Automl module
The Automl features allows you to train an automl model with the advantage of an added Sanatio report on the newly trained model.
The automl object is returned to the user with a validation report.
How to access the feature?
Parameters required for initialization
Parameter Name
Data Type
Optional
X_train
Data Frame
The training data used for the model
y_train
Data Series
The truth value used to train the model
X_test
Data Frame
The testing feature data split
y_test
Data Series
The ground truth data for testing
classification
Boolean
True if a classification model
regression
Boolean
True if a regression model
time
Int
Amount of time in seconds that the automl model can take.
Example
Last updated