From 9baff81a8c865324284497d835612f78f709115a Mon Sep 17 00:00:00 2001
From: pollfly <75068813+pollfly@users.noreply.github.com>
Date: Mon, 27 Mar 2023 18:52:06 +0300
Subject: [PATCH] Add new clearml-param-search parameters (#511)
---
docs/apps/clearml_param_search.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/docs/apps/clearml_param_search.md b/docs/apps/clearml_param_search.md
index ee3cfdb3..dca18f2f 100644
--- a/docs/apps/clearml_param_search.md
+++ b/docs/apps/clearml_param_search.md
@@ -41,6 +41,9 @@ of the optimization results in table and graph forms.
|`--total-max-jobs`|The total maximum jobs for the optimization process. The default value is `None` for unlimited.|
|
|`--min-iteration-per-job`|The minimum iterations (of the objective metric) per single job.|
|
|`--max-iteration-per-job`|The maximum iterations (of the objective metric) per single job. When iteration maximum is exceeded, the job is aborted.|
|
+|`--max-number-of-concurrent-tasks`|The maximum number of concurrent Tasks (experiments) running at the same time|
|
+|`--args`| List of `=` strings to pass to the remote execution. Currently only argparse/click/hydra/fire arguments are supported. Example: `--args lr=0.003 batch_size=64`|
|
+|`--local`| If set, run the experiments locally. Notice that no new python environment will be created. The `--script` parameter must point to a local file entry point and all arguments must be passed with `--args`|
|
|`--save-top-k-tasks-only`| Keep only the top \ performing tasks, and archive the rest of the experiments. Input `-1` to keep all tasks. Default: `10`.|
|
|`--time-limit-per-job`|Maximum execution time per single job in minutes. When time limit is exceeded, the job is aborted. Default: no time limit.|
|