You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Enter max number of epochs: Press enter to use default value: "
382
+
f"Enter max number of epochs. Press enter to use default value ({default_max_num_epochs}): "# noqa E501
373
383
)
384
+
default_num_trials=10
374
385
num_trials=input(
375
-
"Enter the number of trials to conduct hypeparamter search. Press enter to use default value: "# noqa E501
386
+
f"Enter the number of trials (maximum number of hyperparameter configurations to consider) for hyperparameter search. Press enter to use default value ({default_num_trials}): "# noqa E501
376
387
)
377
388
default_batch_size=DEFAULT_HYPERPARAMETERS_SPACE[
378
389
"per_device_train_batch_size"
379
390
] # noqa E501
380
391
max_batch_size=input(
381
392
"Enter the max batch size. "
382
-
+f"Press enter to use default: {default_batch_size}"
393
+
+f"Press enter to use default ({default_batch_size}): "
0 commit comments