From a7d17051ab6877dd759c650eba7cb1e8c069f86b Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Wed, 26 Oct 2022 14:00:44 +0200 Subject: [PATCH 1/3] Add ClearML minimum version requirement Signed-off-by: Glenn Jocher --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 52f7b9ea57d2..8cb1bd4c6fe1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ tqdm>=4.64.0 # Logging ------------------------------------- tensorboard>=2.4.1 -# clearml +# clearml>=1.2.0 # comet # Plotting ------------------------------------ From 118e82385f47d46a0ba646baf2fbbd3d8fdf59fd Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Wed, 26 Oct 2022 14:02:38 +0200 Subject: [PATCH 2/3] Update README.md Signed-off-by: Glenn Jocher --- utils/loggers/clearml/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/loggers/clearml/README.md b/utils/loggers/clearml/README.md index 64eef6befc93..e36e490dce68 100644 --- a/utils/loggers/clearml/README.md +++ b/utils/loggers/clearml/README.md @@ -54,7 +54,7 @@ That's it! You're done 😎 To enable ClearML experiment tracking, simply install the ClearML pip package. ```bash -pip install clearml +pip install clearml>=1.20.0 ``` This will enable integration with the YOLOv5 training script. Every training run from now on, will be captured and stored by the ClearML experiment manager. If you want to change the `project_name` or `task_name`, head over to our custom logger, where you can change it: `utils/loggers/clearml/clearml_utils.py` From 923b33a05765c3ec6797e42c2beacd2eb3116932 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Wed, 26 Oct 2022 14:04:10 +0200 Subject: [PATCH 3/3] Update README.md Signed-off-by: Glenn Jocher --- utils/loggers/clearml/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/loggers/clearml/README.md b/utils/loggers/clearml/README.md index e36e490dce68..e0c5824bc2a2 100644 --- a/utils/loggers/clearml/README.md +++ b/utils/loggers/clearml/README.md @@ -54,7 +54,7 @@ That's it! You're done 😎 To enable ClearML experiment tracking, simply install the ClearML pip package. ```bash -pip install clearml>=1.20.0 +pip install clearml>=1.2.0 ``` This will enable integration with the YOLOv5 training script. Every training run from now on, will be captured and stored by the ClearML experiment manager. If you want to change the `project_name` or `task_name`, head over to our custom logger, where you can change it: `utils/loggers/clearml/clearml_utils.py`