You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any ideas what might be causing the "'module' object is not callable" error?
mljar-scikit-plot 0.3.10
mljar-supervised 1.1.7
Linear algorithm was disabled.
AutoML directory: xxx
The task is binary_classification with evaluation metric logloss
AutoML will use algorithms: ['Random Forest', 'LightGBM', 'Xgboost', 'CatBoost', 'Neural Network']
AutoML will ensemble available models
AutoML steps: ['simple_algorithms', 'default_algorithms', 'not_so_random', 'golden_features', 'insert_random_feature', 'features_selection', 'hill_climbing_1', 'hill_climbing_2', 'ensemble']
Skip simple_algorithms because no parameters were generated.
* Step default_algorithms will try to check up to 5 models
'module' object is not callable
1_Default_LightGBM logloss 0.614364 trained in 49.53 seconds (1-sample predict time 0.0425 seconds)
'module' object is not callable
2_Default_Xgboost logloss 0.61475 trained in 26.49 seconds (1-sample predict time 0.0461 seconds)
'module' object is not callable
3_Default_CatBoost logloss 0.613929 trained in 19.38 seconds (1-sample predict time 0.0501 seconds)
'module' object is not callable
...
Code doesn't do anything out of the ordinary.
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, random_state = 7)
model = AutoML(mode="Perform", results_path=model_path, total_time_limit=14400)
model = model.fit(X_train, y_train)
The text was updated successfully, but these errors were encountered:
Any ideas what might be causing the "'module' object is not callable" error?
mljar-scikit-plot 0.3.10
mljar-supervised 1.1.7
...
Code doesn't do anything out of the ordinary.
The text was updated successfully, but these errors were encountered: