diff --git a/docs/deploying_clearml/clearml_server_gcp.md b/docs/deploying_clearml/clearml_server_gcp.md index 4ad151ae..482c7634 100644 --- a/docs/deploying_clearml/clearml_server_gcp.md +++ b/docs/deploying_clearml/clearml_server_gcp.md @@ -77,8 +77,8 @@ The minimum requirements for ClearML Server are: * Stop and then restart the Docker containers by executing the following commands: - docker-compose -f /opt/clearml/docker-compose.yml down - docker-compose -f /opt/clearml/docker-compose.yml up -d + docker-compose -f /opt/clearml/docker-compose.yml down + docker-compose -f /opt/clearml/docker-compose.yml up -d ## Backing Up and Restoring Data and Configuration diff --git a/docs/deploying_clearml/clearml_server_linux_mac.md b/docs/deploying_clearml/clearml_server_linux_mac.md index c97fe116..aabdbc93 100644 --- a/docs/deploying_clearml/clearml_server_linux_mac.md +++ b/docs/deploying_clearml/clearml_server_linux_mac.md @@ -76,15 +76,15 @@ Deploying the server requires a minimum of 4 GB of memory, 8 GB is recommended. * Linux: - echo "vm.max_map_count=262144" > /tmp/99-clearml.conf - sudo mv /tmp/99-clearml.conf /etc/sysctl.d/99-clearml.conf - sudo sysctl -w vm.max_map_count=262144 - sudo service docker restart + echo "vm.max_map_count=262144" > /tmp/99-clearml.conf + sudo mv /tmp/99-clearml.conf /etc/sysctl.d/99-clearml.conf + sudo sysctl -w vm.max_map_count=262144 + sudo service docker restart * macOS: - screen ~/Library/Containers/com.docker.docker/Data/vms/0/tty - sysctl -w vm.max_map_count=262144 + screen ~/Library/Containers/com.docker.docker/Data/vms/0/tty + sysctl -w vm.max_map_count=262144 1. Remove any previous installation of ClearML Server. @@ -150,8 +150,8 @@ After deploying ClearML Server, the services expose the following ports: * Stop and then restart the Docker containers by executing the following commands: - docker-compose -f /opt/clearml/docker-compose.yml down - docker-compose -f /opt/clearml/docker-compose.yml up -d + docker-compose -f /opt/clearml/docker-compose.yml down + docker-compose -f /opt/clearml/docker-compose.yml up -d @@ -178,11 +178,11 @@ If needed, restore data and configuration by doing the following: * Linux: - sudo chown -R 1000:1000 /opt/clearml + sudo chown -R 1000:1000 /opt/clearml * macOS: - sudo chown -R $(whoami):staff /opt/clearml + sudo chown -R $(whoami):staff /opt/clearml ## Next Step * [Configuring ClearML for ClearML Server](clearml_config_for_clearml_server.md). \ No newline at end of file diff --git a/docs/deploying_clearml/clearml_server_win.md b/docs/deploying_clearml/clearml_server_win.md index 64942c24..2b15a996 100644 --- a/docs/deploying_clearml/clearml_server_win.md +++ b/docs/deploying_clearml/clearml_server_win.md @@ -74,8 +74,8 @@ After deploying ClearML Server, the services expose the following node ports: * Stop and then restart the Docker containers by executing the following commands: - docker-compose -f c:\opt\clearml\docker-compose-win10.yml down - docker-compose -f c:\opt\clearml\docker-compose-win10.yml up -d + docker-compose -f c:\opt\clearml\docker-compose-win10.yml down + docker-compose -f c:\opt\clearml\docker-compose-win10.yml up -d ## Next Step diff --git a/docs/deploying_clearml/upgrade_server_linux_mac.md b/docs/deploying_clearml/upgrade_server_linux_mac.md index a208ed58..f6f0c060 100644 --- a/docs/deploying_clearml/upgrade_server_linux_mac.md +++ b/docs/deploying_clearml/upgrade_server_linux_mac.md @@ -42,7 +42,7 @@ For backwards compatibility, the environment variables ``TRAINS_HOST_IP``, ``TRA 1. If upgrading from **Trains Server** to **ClearML Server**, rename `/opt/trains` and its subdirectories to `/opt/clearml`. - sudo mv /opt/trains /opt/clearml + sudo mv /opt/trains /opt/clearml 1. Download the latest `docker-compose.yml` file. diff --git a/docs/getting_started/video_tutorials/hands-on_mlops_tutorials/how_clearml_is_used_by_an_mlops_engineer.md b/docs/getting_started/video_tutorials/hands-on_mlops_tutorials/how_clearml_is_used_by_an_mlops_engineer.md index b9f3b01d..c457a69d 100644 --- a/docs/getting_started/video_tutorials/hands-on_mlops_tutorials/how_clearml_is_used_by_an_mlops_engineer.md +++ b/docs/getting_started/video_tutorials/hands-on_mlops_tutorials/how_clearml_is_used_by_an_mlops_engineer.md @@ -374,7 +374,7 @@ to run if the trigger is triggered, which is in this case `training_task.id` is task. We have the schedule queue, so we want to obviously schedule it in any of the queues. We can use CPU queue in this case, and then we can give it a name as well. And just to make it clear that this training is not actually training from Alice herself, but it's training on the new data of Bob. It's an automated training. We can give it a specific name -so that Alice knows this was triggered automatically, and then we can use `trigger_on_tags` where we should look to to +so that Alice knows this was triggered automatically, and then we can use `trigger_on_tags` where we should look to actually trigger the trigger. Damn this is a lot of trigger. So what happens here is we look in the Project Bob folder and then if a new tag production is found that wasn't there diff --git a/docs/release_notes/ver_1_2.md b/docs/release_notes/ver_1_2.md index a6013cb1..a194334b 100644 --- a/docs/release_notes/ver_1_2.md +++ b/docs/release_notes/ver_1_2.md @@ -103,7 +103,7 @@ title: Version 1.2 - Fix extra_layout not passed to report_matrix [ClearML GitHub issue #559](https://github.com/allegroai/clearml/issues/559) - Fix group arguments in click [ClearML GitHub PR #561](https://github.com/allegroai/clearml/pull/561) - Fix no warning when failing to patch argparse [ClearML GitHub PR #576](https://github.com/allegroai/clearml/pull/576) -- Fix crash in Dataset.upload() when there is nothing to upload [ClearML GitHub PR #579](https://github.com/allegroai/clearml/pull/579) +- Fix crash in `Dataset.upload()` when there is nothing to upload [ClearML GitHub PR #579](https://github.com/allegroai/clearml/pull/579) - Fix requirements, refactor and reformat examples [ClearML GitHub PR #567](https://github.com/allegroai/clearml/pull/567), [#573](https://github.com/allegroai/clearml/pull/573), [#582](https://github.com/allegroai/clearml/pull/582) - Auto-scaler - Change confusing log message diff --git a/docs/release_notes/ver_1_3.md b/docs/release_notes/ver_1_3.md index 7aa2cd4a..bae3ad6a 100644 --- a/docs/release_notes/ver_1_3.md +++ b/docs/release_notes/ver_1_3.md @@ -52,12 +52,12 @@ title: Version 1.3 **Bug Fixes** * Update Slack SDK requirement [ClearML GitHub issue #597](https://github.com/allegroai/clearml/issues/597) -* Fix fork after task.close() is called [ClearML GitHub issue #605](https://github.com/allegroai/clearml/issues/605) +* Fix fork after `task.close()` is called [ClearML GitHub issue #605](https://github.com/allegroai/clearml/issues/605) * Fix Azure storage upload [ClearML GitHub issue #598](https://github.com/allegroai/clearml/issues/598) * Fix offline mode crash * Fix task delete response not checked * Fix pipeline controller kwargs with list -* Fix PipelineDecorator.debug_pipeline() +* Fix `PipelineDecorator.debug_pipeline()` * Fix PipelineDecorator example * Fix Python 3.10 issues * Fix handling of legacy fileserver (files.community.clear.ml) diff --git a/docs/release_notes/ver_1_4.md b/docs/release_notes/ver_1_4.md index 08684436..22a5c417 100644 --- a/docs/release_notes/ver_1_4.md +++ b/docs/release_notes/ver_1_4.md @@ -93,14 +93,14 @@ title: Version 1.4 * Fix uploading 3D plots with matplotlib plt shows 2D plot on task results page * Fix wrong Histogram plotting using when matplotlib * Fix PyTorch `ScriptModule` autobind -* Fix PyTorch auto-magic logging torchscript models +* Fix PyTorch auto-magic logging TorchScript models * Fix forked process will not call `_at_exit` and flush all outstanding reports * Fix matplotlib to plotly conversion fails on subplots (convert as image if figure has subplots) * Fix Windows sub process might end up waiting forever for uploads to finish if subprocess is very shot lived * Fix `StorageManager.get_local_copy()` returning None for a valid path in Windows * Fix Jupyter notebook cannot be detected * Fix PipelineController does not change node Task name, only pipeline step name -* Fix Task.query_tasks() specifying page size or page number +* Fix `Task.query_tasks()` specifying page size or page number ### ClearML Server 1.4.0 diff --git a/src/pages/index.js b/src/pages/index.js index 7388c228..6f59f0a7 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -97,7 +97,8 @@ function Home() { return ( + description="Turn your code into MLOps with only 2 lines of code with ClearML! Easily develop, orchestrate, and automate ML workflows at scale" + >