Noam Katz
Noam Katz
From what I can tell, linear models are not run by default in version 0.3.1. What is the reason? Would you consider adding them to the default hyperparameters file? To...
Could you also use FLAML to select an optimal subset of features, perhaps using fewer features at first, then increasing, similar to how model complexity increases during training?
Here's the code: ```python settings = { "time_budget": 360, "metric": 'ap', "task": 'classification', "log_file_name": f'{output_dir}/flaml1.log', "seed": 7654321, "log_training_metric": True, "groups": group_id, "estimator_list": ['catboost'] } automl.fit(X_train=X_train, y_train=y_train, **settings) ``` Here's the...