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

AUTO: #2634

Merged

AUTO: #2634

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ludwig/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ def train_cli(
if HYPEROPT in config:
if not query_yes_no(HYPEROPT_WARNING + CONTINUE_PROMPT):
exit(1)
# Stop gap: remove hyperopt from the config to prevent interference with training step sizes
# TODO: https://github.com/ludwig-ai/ludwig/issues/2633
# Need to investigate why the presence of hyperopt in the config interferes with training step sizes
config.pop(HYPEROPT)

if model_load_path:
model = LudwigModel.load(
Expand Down