Change HyperParameterOptimizer spawn_task_project to spawn_project

Add HyperParameterOptimizer parallel coordinates (issues #279)
This commit is contained in:
allegroai
2021-01-12 20:22:05 +02:00
parent 54132e2505
commit 794d97ca7c
2 changed files with 58 additions and 26 deletions

View File

@@ -86,8 +86,8 @@ an_optimizer = HyperParameterOptimizer(
optimizer_class=aSearchStrategy,
# Select an execution queue to schedule the experiments for execution
execution_queue=execution_queue,
# If specified all Tasks created by the HPO process will be under the `spawned_tasks_project` project
spawn_task_project=None, # 'HPO spawn project',
# If specified all Tasks created by the HPO process will be created under the `spawned_project` project
spawn_project=None, # 'HPO spawn project',
# If specified only the top K performing Tasks will be kept, the others will be automatically archived
save_top_k_tasks_only=None, # 5,
# Optional: Limit the execution time of a single experiment, in minutes.