-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AutoMLRegressor does not support task binary #1603
Comments
Hi @dadangsetio, we use |
thank you for response @eddiebergman you are right that the content of |
You may prefer to use probability scores from If you really need to skip the Here's a sample snippet: from sklearn.datasets import make_classification
from autosklearn.automl import AutoML
from autosklearn.constants import REGRESSION
X, y = make_classification()
print(y) # [0, 0, 1, ...]
automl = AutoML(
time_left_for_this_task=30,
per_run_time_limit=5,
...,
)
regressor.fit(X, y, task=REGRESSION, ...) Here's the Best, |
iam use sample snippet of
|
You should use the same parameters you use when you constructed the estimator as you do in your original code, my guess is you had set the The issue is that there is no way to limit the memory of processes on Mac as far as I know. The above version of |
classifier = AutoSklearn2Classifier(
time_left_for_this_task=15 * 60,
per_run_time_limit=30,
memory_limit=None,
n_jobs=1,
max_models_on_disc=10,
ensemble_size=10
).fit(preprocessor.transform(train_x), train_y, preprocessor.transform(valid_x), valid_y) There is an internal check that prohibits running without memory limit:
It's such a shame we cannot use |
Yes, it's true, I used to feel like that @ViktorooReps |
cant fit model with AutoMLRegression
this my log
System Details (if relevant)
The text was updated successfully, but these errors were encountered: