Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
EdenWuyifan committed Apr 27, 2024
1 parent aebf4e5 commit 9d3e490
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/offline_train/tabular_classification_ppo.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@
y_test = y.iloc[test_indices]

# Add settings
automl = AutoMLClassifier(time_bound=args.time_bound, output_folder=args.output_dir, checkpoints_folder=args.save_dir)
automl = AutoMLClassifier(
time_bound=args.time_bound,
output_folder=args.output_dir,
checkpoints_folder=args.save_dir,
)

# Perform the search
automl.fit(X_train, y_train)
Expand Down

0 comments on commit 9d3e490

Please sign in to comment.