Skip to content
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

Autoencoder/Unsupervised learning stopping_metric automatically selected as "deviance" #7126

Closed
exalate-issue-sync bot opened this issue May 11, 2023 · 2 comments

Comments

@exalate-issue-sync
Copy link

There is a bug in the automatic selection of stopping criteria based on problem type (unsupervised/regression/...).

In the current version, it selects "deviance" which doesn't apply to unsupervised and it never stops.
It should choose MSE as it used to in the prior versions.

The workaround is to specify stopping criteria explicitly to MSE:

ae_model = H2OAutoEncoderEstimator(activation="Tanh",
hidden=[2],
model_id="ae_model",
epochs=2000,
ignore_const_cols=False,
stopping_metric="MSE",
seed=1234)

@h2o-ops-ro
Copy link
Collaborator

JIRA Issue Details

Jira Issue: PUBDEV-8537
Assignee: Michal Kurka
Reporter: Arun Aryasomayajula
State: Resolved
Fix Version: 3.36.0.2
Attachments: N/A
Development PRs: Available

@h2o-ops-ro
Copy link
Collaborator

Linked PRs from JIRA

#6021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant