File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -333,7 +333,18 @@ class DataHandlerLP(DataHandler):
333333 """
334334 DataHandler with **(L)earnable (P)rocessor**
335335
336- Tips to improving the performance of data handler
336+ This handler will produce three pieces of data in pd.DataFrame format.
337+ - DK_R / self._data: the raw data loaded from the loader
338+ - DK_I / self._infer: the data processed for inference
339+ - DK_L / self._learn: the data processed for learning model.
340+
341+ The motivation of using different processor workflows for learning and inference
342+ Here are some examples.
343+ - The instrument universe for learning and inference may be different.
344+ - The processing of some samples may rely on label (for example, some samples hit the limit may need extra processing or be dropped).
345+ These processors only apply to the learning phase.
346+
347+ Tips to improve the performance of data handler
337348 - To reduce the memory cost
338349 - `drop_raw=True`: this will modify the data inplace on raw data;
339350 """
You can’t perform that action at this time.
0 commit comments