You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|Automatically trackand visualize all your YOLOv5 training runs in the cloud with [Weights & Biases](https://wandb.ai/site?utm_campaign=repo_yolo_readme)|Label and export your custom datasets directly to YOLOv5 for training with [Roboflow](https://roboflow.com/?ref=ultralytics)|
208
+
|ClearML ⭐ NEW|Roboflow|Weights and Biases
209
+
|:-:|:-:|:-:|
210
+
|Automatically track, visualize and even remotely train YOLOv5 using [ClearML](https://cutt.ly/yolov5-readme-clearml) (open-source!)|Label and export your custom datasets directly to YOLOv5 for training with [Roboflow](https://roboflow.com/?ref=ultralytics) |Automatically track and visualize all your YOLOv5 training runs in the cloud with [Weights & Biases](https://wandb.ai/site?utm_campaign=repo_yolo_readme)
Copy file name to clipboardExpand all lines: tutorial.ipynb
+26-1Lines changed: 26 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@
7
7
"provenance": [],
8
8
"collapsed_sections": [],
9
9
"machine_shape": "hm",
10
+
"toc_visible": true,
10
11
"include_colab_link": true
11
12
},
12
13
"kernelspec": {
@@ -913,6 +914,30 @@
913
914
"# 4. Visualize"
914
915
]
915
916
},
917
+
{
918
+
"cell_type": "markdown",
919
+
"source": [
920
+
"## ClearML Logging and Automation 🌟 NEW\n",
921
+
"\n",
922
+
"[ClearML](https://cutt.ly/yolov5-notebook-clearml) is completely integrated into YOLOv5 to track your experimentation, manage dataset versions and even remotely execute training runs.\n",
923
+
"\n",
924
+
"To enable ClearML (Check cells above):\n",
925
+
"- `pip install clearml`\n",
926
+
"- run `clearml-init` to connect to a ClearML server (**deploy your own open-source server [here](https://github.com/allegroai/clearml-server)**, or use our free hosted server [here](https://cutt.ly/yolov5-notebook-clearml))\n",
927
+
"\n",
928
+
"You'll get all the great expected features from an experiment manager: live updates, model upload, experiment comparison etc. but ClearML also tracks uncommitted changes and installed packages for example. Thanks to that ClearML Tasks (which is what we call experiments) are also reproducible on different machines! With only 1 extra line, we can schedule a YOLOv5 training task on a queue to be executed by any number of ClearML Agents (workers).\n",
929
+
"\n",
930
+
"You can use ClearML Data to version your dataset and then pass it to YOLOv5 simply using its unique ID. This will help you keep track of your data without adding extra hassle. \n",
931
+
"\n",
932
+
"Explore the [ClearML Tutorial](https://github.com/ultralytics/yolov5/tree/master/utils/loggers/clearml) for more info!\n",
0 commit comments