Unlabeled Data
Integration Script
from code_loader import leap_binder
from code_loader.contract.datasetclasses import PreprocessResponse
# Preprocessing Function
def unlabeled_preprocessing_func() -> PreprocessResponse:
...
return PreprocessResponse(length=len(unlabeled_df), data=unlabeled_df)
leap_binder.set_unlabeled_data_preprocess(function=unlabeled_preprocessing_func)Fetch Similar



Last updated
Was this helpful?

