start_asc_pipeline
Function
Initializes and starts the data preprocessing pipeline in non-automatic graph modification mode.
Prototype
1 | def start_asc_pipeline() |
Return Value
- Success: None
- Failure: An exception is thrown.
Example
1 2 3 4 | from mx_rec.core.asc.manager import start_asc_pipeline MODIFY_GRAPH_FLAG = False if not MODIFY_GRAPH_FLAG: start_asc_pipeline() |
See Also
For details about the API call sequence and example, see Porting and Training.
Parent topic: Data APIs