Small edits

This commit is contained in:
revital
2025-04-15 08:24:47 +03:00
parent 586d0a7362
commit bd06c98927
10 changed files with 16 additions and 16 deletions

View File

@@ -6,7 +6,7 @@ title: Version 1.2
**New Features and Improvements**
* Improve GPU Performance, 50%-300% improvement over vanilla Triton
* Improve performance on CPU, optimize uvloop + multi-processing
* Improve performance on CPU, optimize uvloop + multiprocessing
* Add Hugging Face Transformer example
* Add binary input support ([ClearML Serving PR #37](https://github.com/clearml/clearml-serving/pull/37) )

View File

@@ -48,11 +48,11 @@ title: Version 1.0
- Fix `default_output_uri` for Dataset creation ([ClearML GitHub issue 371](https://github.com/clearml/clearml/issues/371))
- Fix `clearml-task` failing without a docker script ([ClearML GitHub issue 378](https://github.com/clearml/clearml/issues/378))
- Fix PyTorch DDP sub-process spawn multi-process
- Fix PyTorch DDP sub-process spawn multiprocess
- Fix `Task.execute_remotely()` on created Task (not initialized Task)
- Fix auto scaler custom bash script should be called last before starting agent
- Fix auto scaler spins too many instances at once then kills the idle ones (spin time is longer than poll time)
- Fix multi-process spawn context using `ProcessFork` kills sub-process before parent process ends
- Fix multiprocess spawn context using `ProcessFork` kills sub-process before parent process ends
### ClearML 1.0.3

View File

@@ -74,7 +74,7 @@ title: Version 1.1
* Fix `matplotlib` auto-magic detect bar graph series name ([ClearML GitHub issue #518](https://github.com/clearml/clearml/issues/518))
* Fix path limitation on storage services (posix, object storage) when storing target artifacts by limiting length of
project name (full path) and task name used for object path ([ClearML GitHub issue #516](https://github.com/clearml/clearml/issues/516))
* Fix multi-processing context block catching exception
* Fix multiprocessing context block catching exception
* Fix Google Cloud Storage with no default project causes a crash
* Fix main process's reporting subprocess lost, switch back to thread mode
* Fix forked `StorageHelper` should use its own `ThreadExecuter`
@@ -239,7 +239,7 @@ title: Version 1.1
- Fix Python2 compatibility
- Fix *clearml-task* exit with error when failing to verify `output_uri` (output warning instead)
- Fix unsafe Google Storage delete object
- Fix multi-process spawning wait-for-uploads can create a deadlock in very rare cases
- Fix multiprocess spawning wait-for-uploads can create a deadlock in very rare cases
- Fix `task.set_parent()` fails when passing Task object
- Fix `PipelineController` skipping queued Tasks
- Remove `humanfriendly` dependency (unused)

View File

@@ -49,7 +49,7 @@ title: Version 1.13
**New Features**
* Add support for recursive list, dict, and tuple ref parsing for `PipelineController.add step()` parameter overrides ([ClearML GitHub issue #1089](https://github.com/clearml/clearml/issues/1089))
* Update PyNVML to the latest NVIDIA version for better GPU monitoring
* Add `force_single_script_file` argument to `Task.create()` to avoid git repository auto detection
* Add `force_single_script_file` argument to `Task.create()` to avoid git repository auto-detection
* Use `os.register_at_fork` instead of monkey patching fork for `python>3.6`
* Add support to programmatically archive and unarchive models from the model registry using the `Model.archive()` and
`Model.unarchive()` methods ([ClearML GitHub issue #1096](https://github.com/clearml/clearml/issues/1096))