Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Commit 5fe6a15

Browse files
committed
no neural network
removed from MLJAR and AutoGluon
1 parent 2fefa1f commit 5fe6a15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/algorithms/auto_gluon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def autogluon(df, task, options, time_start):
4747
time_limit=options['time']*60,
4848
presets=['best_quality'],
4949
#auto_stack=True
50-
#hyperparameters=hyperparameters # -> Questo aggiunge le NN
50+
hyperparameters=hyperparameters # -> Comment this line to add te Neural Network
5151
)
5252

5353
predictor.fit_summary()

app/algorithms/mljar_supervised.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def do_mljar(df, options, task, time_start):
4141
else: ml_task = 'binary_classification'
4242
else: ml_task=task
4343

44-
automl = AutoML(mode="Compete", total_time_limit=60*options['time'], ml_task=ml_task)
44+
automl = AutoML(mode="Compete", total_time_limit=60*options['time'], ml_task=ml_task, algorithms=["Baseline", "Linear", "Decision Tree", "Random Forest", "Extra Trees", "LightGBM", "Xgboost", "CatBoost"])
4545

4646
automl.fit(X_train, y_train)
4747
y_pred = automl.predict_all(X_test)

0 commit comments

Comments
 (0)