-Jupyter-Lab Window
+JupyterLab Window

@@ -138,7 +139,7 @@ The Task must be connected to a git repository, since currently single script de
| Command line options | Description | Default value |
|-----|---|---|
-| `--jupyter-lab` | Download a Jupyter-Lab environment | `true` |
+| `--jupyter-lab` | Download a JupyterLab environment | `true` |
| `--vscode-server` | Download a VSCode environment | `true` |
| `--public-ip` | Register the public IP of the remote machine (if you are running the session on a public cloud) | Session runs on the machine whose agent is executing the session|
| `--init-script` | Specify a BASH init script file to be executed when the interactive session is being set up | `none` or previously entered BASH script |
From 94dc32a9638d37ec77c65824eb491654eee4eb26 Mon Sep 17 00:00:00 2001
From: pollfly <75068813+pollfly@users.noreply.github.com>
Date: Wed, 18 Aug 2021 10:29:24 +0300
Subject: [PATCH 3/4] add enabling/disabling docs for non-responsive watchdog
(#39)
---
docs/deploying_clearml/clearml_server_config.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/docs/deploying_clearml/clearml_server_config.md b/docs/deploying_clearml/clearml_server_config.md
index 5eb4b600..3d15d9ed 100644
--- a/docs/deploying_clearml/clearml_server_config.md
+++ b/docs/deploying_clearml/clearml_server_config.md
@@ -300,6 +300,7 @@ the watchdog marks them as `aborted`. The non-responsive experiment watchdog is
Modify the following settings for the watchdog:
+* Watchdog status - enabled / disabled
* The time threshold (in seconds) of experiment inactivity (default value is 7200 seconds (2 hours)).
* The time interval (in seconds) between watchdog cycles.
@@ -312,6 +313,8 @@ Modify the following settings for the watchdog:
tasks {
non_responsive_tasks_watchdog {
+ enabled: true
+
# In-progress tasks that haven't been updated for at least 'value' seconds will be stopped by the watchdog
threshold_sec: 7200
From 5b51117434468fa2bf17f6bd5ca13b6bedc3c719 Mon Sep 17 00:00:00 2001
From: Derek Chia
Date: Wed, 18 Aug 2021 18:45:40 +0800
Subject: [PATCH 4/4] Fix ClearML Agent initialization command (#40)
---
docs/getting_started/mlops/mlops_first_steps.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/getting_started/mlops/mlops_first_steps.md b/docs/getting_started/mlops/mlops_first_steps.md
index 4b573b45..17fa158e 100644
--- a/docs/getting_started/mlops/mlops_first_steps.md
+++ b/docs/getting_started/mlops/mlops_first_steps.md
@@ -30,7 +30,7 @@ pip install clearml-agent
Connect the Agent to the server by [creating credentials](https://app.community.clear.ml/profile), then run this:
```bash
-clearml-init
+clearml-agent init
```
:::note