Merge branch 'clearml:main' into images_4

This commit is contained in:
pollfly 2025-05-05 11:14:17 +03:00 committed by GitHub
commit 92d466a728
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 80 additions and 14 deletions

View File

@ -53,8 +53,8 @@ automated workflows in one (or both) of the following ways:
queue that a ClearML Agent is servicing.
The agent facilitates [overriding task execution detail](webapp/webapp_exp_tuning.md) values through the UI without
code modification. Modifying a task clones configuration will have the ClearML agent executing it override the
original values:
code modification. When you modify a cloned tasks configuration, the ClearML agent will override the original values
during execution:
* Modified package requirements will have the task script run with updated packages
* Modified recorded command line arguments will have the ClearML agent inject the new values in their stead
* Code-level configuration instrumented with [`Task.connect()`](references/sdk/task.md#connect) will be overridden by modified hyperparameters

View File

@ -47,7 +47,7 @@ If multiple tasks need to be created in the same process (for example, for loggi
make sure to close a task, before initializing a new one. To close a task simply call [`Task.close()`](../references/sdk/task.md#close)
(see example [here](../guides/advanced/multiple_tasks_single_process.md)).
When initializing a task, its project needs to be specified. If the project entered does not exist, it will be created on-the-fly.
When initializing a task, its project needs to be specified. If the project entered does not exist, it is created on-the-fly.
Projects can be divided into subprojects, just like folders are broken into subfolders.
For example:
@ -166,8 +166,8 @@ auto_connect_arg_parser={}
```
### Task Reuse
Every `Task.init` call will create a new task for the current execution.
To mitigate the clutter that a multitude of debugging tasks might create, a task will be reused if:
Every `Task.init` call creates a new task for the current execution.
To mitigate the clutter that a multitude of debugging tasks might create, a task is reused if:
* The last time it was executed (on this machine) was under 24 hours ago (configurable, see
[`sdk.development.task_reuse_time_window_in_hours`](../configs/clearml_conf.md#task_reuse) in
the ClearML configuration reference)
@ -486,7 +486,7 @@ a_func_task = task.create_function_task(
some_argument=123
)
```
Arguments passed to the function will be automatically logged in the
Arguments passed to the function are automatically logged in the
task's **CONFIGURATION** tab under the **HYPERPARAMETERS > Function** section.
Like any other arguments, they can be changed from the UI or programmatically.

View File

@ -131,9 +131,10 @@ should be reviewed and modified prior to the server installation
sudo mkdir -pv /opt/allegro/data/mongo_4/configdb
sudo mkdir -pv /opt/allegro/data/mongo_4/db
sudo mkdir -pv /opt/allegro/data/redis
sudo mkdir -pv /opt/allegro/data/fileserver
sudo mkdir -pv /opt/allegro/data/fileserver/tmp
sudo mkdir -pv /opt/allegro/logs/apiserver
sudo mkdir -pv /opt/allegro/documentation
sudo mkdir -pv /opt/allegro/data/fileserver
sudo mkdir -pv /opt/allegro/logs/fileserver
sudo mkdir -pv /opt/allegro/logs/fileserver-proxy
sudo mkdir -pv /opt/allegro/data/fluentd/buffer

View File

@ -25,7 +25,7 @@ View saved snapshots in the task's **ARTIFACTS** tab.
![Artifacts tab](../../../img/examples_xgboost_metric_artifacts.png#light-mode-only)
![Artifacts tab](../../../img/examples_xgboost_metric_artifacts_dark.png#dark-mode-only)
To view the model details, click the model name in the **ARTIFACTS** page, which will open the model's info tab. Alternatively, download the model.
To view the model details, click the model name in the **ARTIFACTS** page to open its info tab. Alternatively, download the model.
![Model info panel](../../../img/examples_xgboost_metric_model.png#light-mode-only)
![Model info panel](../../../img/examples_xgboost_metric_model_dark.png#dark-mode-only)

View File

@ -46,7 +46,7 @@ When this code is executed, ClearML logs your command-line arguments, which you
![click configuration](../img/integrations_click_configs_dark.png#dark-mode-only)
In the UI, you can clone the task multiple times and set the clones' parameter values for execution by the [ClearML Agent](../clearml_agent.md).
When the clone is executed, the executing agent will use the new parameter values as if set by the command-line.
When the task clone is executed, the executing agent uses the new parameter values as if set by the command-line.
See [code examples](https://github.com/clearml/clearml/blob/master/examples/frameworks/click) demonstrating integrating
ClearML with code that uses `click`.

View File

@ -0,0 +1,64 @@
---
title: Version 3.25
---
### Enterprise Server 3.25.0
**New Features**
* Add vector fields to Hyper-Dataset FrameGroups
* FrameGroups support vector fields
* UI vector similarity search
* Add Hyper-Dataset schema reference to UI Hyper-Dataset frame viewer
* Add image source selection to Hyper-Dataset frame viewer: use source or preview URL for image display
* Add Application Gateway UI Settings page
* Deployed Application Gateway Routers information
* Application Gateway UI connectivity test
* Add support for custom x-axis label in UI Task scalars
* Update Orchestration Page:
* Display per-GPU metrics in "CPU and GPU Usage" and "Video Memory" graphs when multiple GPUs are available
* Add "GPU Count" column to the Resource Groups table in the Orchestration Dashboard
* Add global search bar to all UI pages
* Enable setting service users as admins
* Add filter to UI Model Endpoints table
* Add UI scalar viewing configuration on a per-project basis ([ClearML GitHub issue #1377](https://github.com/clearml/clearml/issues/1377))
* Add clicking project name in breadcrumbs of full-screen task opens the task in details view ([ClearML GitHub issue #1376](https://github.com/clearml/clearml/issues/1376))
* Add persistent zoom view when navigating between UI task debug samples
* Add running application instance indicator to UI application categories with running apps
* Improve UI task debug sample image zoom behavior to focus on cursor position
**Bug Fixes**
* Fix EMA smoothing in UI scalars is incorrect in first data point ([ClearML Web GitHub issue #101](https://github.com/clearml/clearml-web/issues/101))
* Improve UI scalar smoothing algorithms (ClearML Web GitHub issues [#101](https://github.com/clearml/clearml-web/issues/101), [#102](https://github.com/clearml/clearml-web/issues/102), [#103](https://github.com/clearml/clearml-web/issues/103))
* Fix UI Users & Groups table's "Groups" column data remains condensed after column is expanded
* Fix setting service users as admins causes apiserver to crash
* Fix UI "New Dataview" modal's version selection sometimes does not display draft versions
* Fix GCS and Azure credential input popups not displaying in UI task debug samples
* Fix UI pipeline "Preview" tab sometimes displays "Failed to get plot charts" error
* Fix UI Model table tag filter displaying unnecessary artifacts after excluding tag
* Fix clicking on task in UI Model lineage navigates to incorrect page
* Fix UI task table displaying incorrect footer sometimes
* Fix UI Settings "Add User Groups" modal keeps removed users in members list
* Fix task statuses not updating in UI task comparison page
* Fix recently modified reports not displayed in UI "Recent Reports"
* Fix UI scalar graph colors sometimes difficult to see in light mode ([ClearML Web GitHub issue #104](https://github.com/clearml/clearml-web/issues/104))
* Fix UI task comparison's metric search bar in **Scalars** tab is case-sensitive
* Fix UI task plot zoom not maintained between full screen and regular view ([ClearML Web GitHub issue #106](https://github.com/clearml/clearml-web/issues/106))
* Fix Hyper-Dataset frame viewer metadata and detail panels open to a fixed height regardless of available space
* Fix old UI "experiment" URLs not redirecting to new UI "task" URLs
* Fix UI task configuration long loading time
* Fix embedded UI task comparison parallel coordinates plot does not display plot legend
* Fix deleting parameter in UI Task configuration tab causes last parameter duplication
* Add support for comparing tasks from specific project in UI Reports customized embed queries
* Fix UI Setting "Edit User" modal's `Save` button is active when changes have not been made
* Fix missing queue name in UI when queue display name is removed
* Fix generated Jupyter Notebook credentials are not displayed in UI "Getting Started" modal
* Fix UI Setting "Access Rule" modal's Queue list does not filter by display name
* Fix UI Annotation module header appearing in unrelated modules
* Fix UI Pipeline Stage Info modal displays broken link
* Fix clicking "Details" view causes UI Model data to disappear
* Fix next/previous function not working in UI model plots in full-screen
* Fix UI plot legend state is not persistent
* Fix parameter graph color is not persistent between plots in UI Model Endpoint
* Fix UI Hyper-Dataset ROI color selector displays incorrect color
* Fix embedded plot of single task displays task name in legend

View File

@ -29,7 +29,7 @@ The top of the dashboard displays the current resource availability and utilizat
picture of the resources available and in use. The **Total** section displays available and idle resource counts.
These counts are also available per worker category.
The **Totals** section displays:
The **Total** section displays:
* GPUs - The total number of GPUs in currently running workers out of the total number of GPUs in all provisioned workers, and the number of idle GPUs. GPUs are considered idle when their average
utilization falls below 80%.
* CPUs - The total number of CPUs in currently running workers out of the total number of CPUs in all provisioned workers, and the number of idle CPUs. CPUs are considered idle when their average
@ -99,7 +99,7 @@ The threshold values applied to the dashboard table affect all workspace users w
</div>
Clicking on a resource group opens the group's info panel and replace the **Overview** graph with that resource's usage
Clicking on a resource group opens the group's info panel and replaces the **Overview** graph with that resource's usage
history.
![Resource group info panel](../img/webapp_orch_dash_resource_group_info.png#light-mode-only)

View File

@ -58,7 +58,7 @@ The worker table shows the currently available workers and their current executi
* Training iteration.
Clicking on a worker will open the worker's details panel and replace the graph with that worker's resource utilization
Clicking on a worker opens the worker's details panel and replaces the graph with that worker's resource utilization
information. The resource metric being monitored can be selected through the menu at the graph's top left corner:
* CPU and GPU Usage
* Memory Usage
@ -66,7 +66,7 @@ information. The resource metric being monitored can be selected through the men
* Network Usage.
The worker's details panel includes the following two tabs:
* **INFO** - worker information:
* **INFO** - Worker information:
* Worker Name
* Update time - The last time the worker reported data
* Current Task - The task currently being executed by the worker

View File

@ -313,9 +313,10 @@ module.exports = {
{
'Enterprise':
[
'release_notes/clearml_server/enterprise/ver_3_24',
'release_notes/clearml_server/enterprise/ver_3_25',
{
'Older Versions': [
'release_notes/clearml_server/enterprise/ver_3_24',
'release_notes/clearml_server/enterprise/ver_3_23', 'release_notes/clearml_server/enterprise/ver_3_22',
'release_notes/clearml_server/enterprise/ver_3_21', 'release_notes/clearml_server/enterprise/ver_3_20'
]