This commit is contained in:
revital 2025-01-27 07:21:25 +02:00
commit 5b27f6ba34
17 changed files with 67 additions and 20 deletions

View File

@ -6,7 +6,7 @@ title: Version 0.16
::: :::
### Trains-Agent 0.16.2 ### Trains Agent 0.16.2
**Features** **Features**

View File

@ -2,7 +2,7 @@
title: Version 0.17 title: Version 0.17
--- ---
## ClearML Agent 0.17.2 ### ClearML Agent 0.17.2
**Features** **Features**

View File

@ -4,7 +4,7 @@ title: Version 1.1
### ClearML Agent 1.1.2 ### ClearML Agent 1.1.2
**Bug Fixes** **Bug Fix**
- Fix the `six` conflict with the new `pathlib2` version 2.3.7 and up. - Fix the `six` conflict with the new `pathlib2` version 2.3.7 and up.

View File

@ -32,7 +32,7 @@ those matching these filters to be used when running containers
### ClearML Agent 1.9.1 ### ClearML Agent 1.9.1
**New Features and Improvements** **New Feature**
* Add default pip version support for Python 3.12 * Add default pip version support for Python 3.12
### ClearML Agent 1.9.0 ### ClearML Agent 1.9.0

View File

@ -23,7 +23,7 @@ title: Version 3.20
### Enterprise Server 3.20.1 ### Enterprise Server 3.20.1
**New Features and Improvements** **New Feature**
* Add support for serving UI from a subpath * Add support for serving UI from a subpath
**Bug Fixes** **Bug Fixes**

View File

@ -2,6 +2,25 @@
title: Version 3.23 title: Version 3.23
--- ---
### Enterprise Server 3.23.2
**New Features**
* Add "Block running user's scripts in the browser" UI setting option for added security
* Add configurable display names for UI Queues
**Bug Fixes**
* Fix debug samples stored in S3 and GS not embedding in UI Reports
* Fix non-admin users can access disabled administrator vaults
* Fix UI administrator vault contents are deleted when vault is saved a second time
* Fix deleting models in UI does not delete them from the file server
* Fix UI Orchestration usage plots and queue metric data does not update in real time
* Fix UI scalar plots data does not refresh
* Fix UI dataset Preview tab does not display dataset contents
* Fix dataset list sometimes disappears in UI Annotation creation modal
* Fix Failed to fetch history' error displayed unnecessarily in UI Orchestration Dashboard
* Add error message when launching multiple UI autoscaler instances with the same worker prefixes
### Enterprise Server 3.23.1 ### Enterprise Server 3.23.1
**Bug Fixes** **Bug Fixes**

View File

@ -25,6 +25,7 @@ Upgrading to ClearML Server v1.17 from a previous version:
**Bug Fixes** **Bug Fixes**
* Fix UI Model Endpoint's Number of Requests plot sometimes displays incorrect data * Fix UI Model Endpoint's Number of Requests plot sometimes displays incorrect data
* Fix UI Incorrect project statistics in project page
* Fix UI datasets page does not filter according to project when dataset is running * Fix UI datasets page does not filter according to project when dataset is running
* Fix UI task scalar legend does not change colors when smoothing is enabled * Fix UI task scalar legend does not change colors when smoothing is enabled
* Fix queue list in UI Workers and Queues page does not alphabetically sort by queue display name * Fix queue list in UI Workers and Queues page does not alphabetically sort by queue display name

View File

@ -5,7 +5,7 @@ title: Version 1.1
### ClearML Serving 1.1.0 ### ClearML Serving 1.1.0
:::warning Backwards Compatibility :::warning Backwards Compatibility
This release is not backwards compatible - see notes below on upgrading This release is not backwards compatible. See `Upgrading from v1.0` note below.
::: :::
**Breaking Changes** **Breaking Changes**
@ -17,4 +17,30 @@ This release is not backwards compatible - see notes below on upgrading
* Triton engine support for variable request (matrix) sizes * Triton engine support for variable request (matrix) sizes
* Triton support, fix `--aux-config` to support more configurations elements * Triton support, fix `--aux-config` to support more configurations elements
* Hugging Face Transformer support * Hugging Face Transformer support
* `Preprocess` class as module * `Preprocess` class as module (see `Preprocess Class` note below)
:::note Upgrading from v1.0
1. Take down the serving containers (docker-compose or k8s)
1. Update the clearml-serving CLI: `pip3 install -U clearml-serving`
1. Re-add a single existing endpoint: `clearml-serving model add ...` (press `yes` when asked). This will upgrade the
clearml-serving session definitions
1. Pull latest serving containers (`docker-compose pull ...` or k8s)
1. Re-spin serving containers (docker-compose or k8s)
:::
:::note Preprocess Class
You can now add a `Preprocess` class from a module. The entire module folder will be packaged.
```
preprocess_folder
├── __init__.py # from .sub.some_file import Preprocess
└── sub
└── some_file.py
```
Pass the top-level folder path using `--preprocess`. For example:
```
clearml-serving --id <serving_session_id> model add --preprocess /path/to/preprocess_folder ...
```
:::

View File

@ -2,7 +2,7 @@
title: Version 0.17 title: Version 0.17
--- ---
## ClearML 0.17.5 ### ClearML 0.17.5
**Features** **Features**
@ -135,14 +135,14 @@ title: Version 0.17
### ClearML 0.17.2 ### ClearML 0.17.2
**Bug Fixes** **Bug Fix**
* Fix broken `clearml-task` CLI. * Fix broken `clearml-task` CLI.
### ClearML 0.17.1 ### ClearML 0.17.1
**Bug Fixes** **Bug Fix**
* `clearml-task` CLI link fixed. * `clearml-task` CLI link fixed.
@ -156,7 +156,7 @@ title: Version 0.17
* Add `clearml-task` CLI for creating (importing) code into **ClearML** (see <a href="https://github.com/allegroai/clearml/blob/master/docs/clearml-task.md">details</a>). * Add `clearml-task` CLI for creating (importing) code into **ClearML** (see <a href="https://github.com/allegroai/clearml/blob/master/docs/clearml-task.md">details</a>).
* Add `Task.create`, which supports importing a code / repository into **ClearML**, including remote execution with `clearml-agent`. * Add `Task.create`, which supports importing a code / repository into **ClearML**, including remote execution with `clearml-agent`.
**Bug Fixes** **Bug Fix**
* PyJWT v2.0 breaks the interface. * PyJWT v2.0 breaks the interface.

View File

@ -95,13 +95,13 @@ title: Version 1.0
### ClearML 1.0.2 ### ClearML 1.0.2
**Bug Fixes** **Bug Fix**
- Fix in rare scenarios process stuck on exit, again :) - Fix in rare scenarios process stuck on exit, again :)
### ClearML 1.0.1 ### ClearML 1.0.1
**Bug Fixes** **Bug Fix**
- Fix in rare scenarios process stuck on exit - Fix in rare scenarios process stuck on exit

View File

@ -20,7 +20,7 @@ the Pipeline DAG at runtime (as opposed to adhering to the existing structure st
* Raise error if dataset name is empty ([ClearML GitHub PR #1083](https://github.com/allegroai/clearml/pull/1083)) * Raise error if dataset name is empty ([ClearML GitHub PR #1083](https://github.com/allegroai/clearml/pull/1083))
* Add support for `spawn` start method for Python `multiprocess`. This should help circumvent issues like [this](https://github.com/python/cpython/issues/84559). * Add support for `spawn` start method for Python `multiprocess`. This should help circumvent issues like [this](https://github.com/python/cpython/issues/84559).
**Bug Fixes** **Bug Fix**
* Fix S3 uploads fail with `LazyEvalWrapper` type error ([ClearML GitHub issue #1081](https://github.com/allegroai/clearml/issues/1081)) * Fix S3 uploads fail with `LazyEvalWrapper` type error ([ClearML GitHub issue #1081](https://github.com/allegroai/clearml/issues/1081))
### ClearML 1.12.0 ### ClearML 1.12.0

View File

@ -41,7 +41,7 @@ title: Version 1.14
### ClearML 1.14.1 ### ClearML 1.14.1
**Bug Fixes** **Bug Fix**
* Fix created pipelines do not appear in the UI pipelines section * Fix created pipelines do not appear in the UI pipelines section
### ClearML 1.14.0 ### ClearML 1.14.0

View File

@ -4,7 +4,7 @@ title: Version 1.2
### ClearML 1.2.1 ### ClearML 1.2.1
**Bug Fixes** **Bug Fix**
- Fix HTTP download fails constructing URL ([ClearML GitHub issue #593](https://github.com/allegroai/clearml/issues/593)) - Fix HTTP download fails constructing URL ([ClearML GitHub issue #593](https://github.com/allegroai/clearml/issues/593))

View File

@ -4,7 +4,7 @@ title: Version 1.4
### ClearML 1.4.1 ### ClearML 1.4.1
**Bug Fixes** **Bug Fix**
* Fix Process Pool hangs at exit ([ClearML GitHub issue #674](https://github.com/allegroai/clearml/issues/674)) * Fix Process Pool hangs at exit ([ClearML GitHub issue #674](https://github.com/allegroai/clearml/issues/674))
### ClearML 1.4.0 ### ClearML 1.4.0

View File

@ -27,7 +27,7 @@ title: Version 1.7
### ClearML 1.7.1 ### ClearML 1.7.1
**New Features and Improvements** **New Feature**
* Add callback option for pipeline step retry * Add callback option for pipeline step retry
**Bug Fixes** **Bug Fixes**

View File

@ -169,7 +169,7 @@ The user group table lists all the active user groups. Each row includes a group
1. Click **+ ADD GROUP** 1. Click **+ ADD GROUP**
1. In the dialog, add a group name and description 1. In the dialog, add a group name and description
1. Add members to the group. When clicking the input box, a list of workspace members appears, from which group members 1. Add members to the group. When clicking the input box, a list of workspace members appears, from which group members
can be selected. Filter the list by typing part of the username. To remove a member, Hover over a user's row and click can be selected. Filter the list by typing part of the username. To remove a member, hover over a user's row and click
the <img src="/docs/latest/icons/ico-trash.svg" alt="Trash can" className="icon size-md" /> button the <img src="/docs/latest/icons/ico-trash.svg" alt="Trash can" className="icon size-md" /> button
1. Click **SAVE** 1. Click **SAVE**

View File

@ -47,7 +47,8 @@ value. Click the point to go to the experiment's details page.
## Project Description ## Project Description
Every project has a `description` field. The UI provides a Markdown editor to edit this field. Every project has a `description` field. The UI provides a Markdown editor to edit this field. For a quick reference for
the MarkDown syntax that can be used, see [Markdown Formatting Quick Guide](webapp_reports.md#markdown-formatting-quick-guide).
In the Markdown document, you can write and share reports and add links to ClearML experiments In the Markdown document, you can write and share reports and add links to ClearML experiments
or any network resource such as issue tracker, web repository, etc. or any network resource such as issue tracker, web repository, etc.