Ultralytics logo # Using Ultralytics YOLOv5 with Comet Welcome to the guide on integrating [Ultralytics YOLOv5](https://github.com/ultralytics/yolov5) with [Comet](https://www.comet.com/site/)! Comet provides powerful tools for experiment tracking, model management, and visualization, enhancing your [machine learning](https://www.ultralytics.com/glossary/machine-learning-ml) workflow. This document details how to leverage Comet to monitor training, log results, manage datasets, and optimize hyperparameters for your YOLOv5 models. ## ๐Ÿงช About Comet [Comet](https://www.comet.com/site/) builds tools that help data scientists, engineers, and team leaders accelerate and optimize machine learning and [deep learning](https://www.ultralytics.com/glossary/deep-learning-dl) models. Track and visualize model metrics in real-time, save your [hyperparameters](https://docs.ultralytics.com/guides/hyperparameter-tuning/), datasets, and model checkpoints, and visualize your model predictions with Comet Custom Panels! Comet ensures you never lose track of your work and makes it easy to share results and collaborate across teams of all sizes. Find more information in the [Comet Documentation](https://www.comet.com/docs/v2/). ## ๐Ÿš€ Getting Started Follow these steps to set up Comet for your YOLOv5 projects. ### Install Comet Install the necessary [Python package](https://pypi.org/project/comet-ml/) using pip: ```shell pip install comet_ml ``` ### Configure Comet Credentials You can configure Comet in two ways: 1. **Environment Variables:** Set your credentials directly in your environment. ```shell export COMET_API_KEY= export COMET_PROJECT_NAME= # Defaults to 'yolov5' if not set ``` Find your API key in your [Comet Account Settings](https://www.comet.com/). 2. **Configuration File:** Create a `.comet.config` file in your working directory with the following content: ```ini [comet] api_key= project_name= # Defaults to 'yolov5' if not set ``` ### Run the Training Script Execute the YOLOv5 [training script](https://docs.ultralytics.com/modes/train/). Comet will automatically start logging your run. ```shell # Train YOLOv5s on COCO128 for 5 epochs python train.py --img 640 --batch 16 --epochs 5 --data coco128.yaml --weights yolov5s.pt ``` That's it! Comet automatically logs hyperparameters, command-line arguments, and training/validation metrics. Visualize and analyze your runs in the Comet UI. For more details on training, see the [Ultralytics Training documentation](https://docs.ultralytics.com/modes/train/). Comet UI showing YOLOv5 training metrics ## โœจ Try an Example! Explore a completed YOLOv5 training run tracked with Comet: - **[View Example Run on Comet](https://www.comet.com/examples/comet-example-yolov5/a0e29e0e9b984e4a822db2a62d0cb357?experiment-tab=chart&showOutliers=true&smoothing=0&transformY=smoothing&xAxis=step&utm_source=yolov5&utm_medium=partner&utm_campaign=partner_yolov5_2022&utm_content=github_readme)** Run the example yourself using this [Google Colab](https://colab.research.google.com/) Notebook: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/comet-ml/comet-examples/blob/master/integrations/model-training/yolov5/notebooks/Comet_and_YOLOv5.ipynb) ## ๐Ÿ“Š Automatic Logging Comet automatically logs the following information by default: ### Metrics - **Losses:** Box Loss, Object Loss, Classification Loss (Training and Validation). - **Performance:** [mAP@0.5](https://www.ultralytics.com/glossary/mean-average-precision-map), mAP@0.5:0.95 (Validation). Learn more about these metrics in the [YOLO Performance Metrics guide](https://docs.ultralytics.com/guides/yolo-performance-metrics/). - **[Precision](https://www.ultralytics.com/glossary/precision) and [Recall](https://www.ultralytics.com/glossary/recall):** Validation data metrics. ### Parameters - **Model Hyperparameters:** Configuration used for the model. - **Command Line Arguments:** All arguments passed via the [CLI](https://docs.ultralytics.com/usage/cli/). ### Visualizations - **[Confusion Matrix](https://www.ultralytics.com/glossary/confusion-matrix):** Model predictions on validation data, useful for understanding classification performance ([Wikipedia definition](https://en.wikipedia.org/wiki/Confusion_matrix)). - **Curves:** PR and F1 curves across all classes. - **Label Correlogram:** Correlation visualization of class labels. ## โš™๏ธ Advanced Configuration Customize Comet's logging behavior using command-line flags or environment variables. ```shell # Environment Variables for Comet Configuration ``` Refer to the [Comet documentation](https://www.comet.com/docs/v2/) for more configuration options. ### Logging Checkpoints with Comet Model checkpoint logging to Comet is disabled by default. Enable it using the `--save-period` argument during training. This saves checkpoints to Comet at the specified epoch interval. ```shell python train.py \ --img 640 \ --batch 16 \ --epochs 5 \ --data coco128.yaml \ --weights yolov5s.pt \ --save-period 1 # Save checkpoint every epoch ``` Checkpoints will appear in the "Assets & Artifacts" tab of your Comet experiment. Learn more about model management in the [Comet Model Registry documentation](https://www.comet.com/docs/v2/guides/model-registry/). ### Logging Model Predictions By default, model predictions (images, ground truth labels, [bounding boxes](https://www.ultralytics.com/glossary/bounding-box)) for the validation set are logged. Control the logging frequency using the `--bbox_interval` argument, which specifies logging every Nth batch per epoch. **Note:** The YOLOv5 validation dataloader defaults to a batch size of 32. Adjust `--bbox_interval` accordingly. Visualize predictions using Comet's Object Detection Custom Panel. See an [example project using the Panel here](https://www.comet.com/examples/comet-example-yolov5?shareable=YcwMiJaZSXfcEXpGOHDD12vA1&utm_source=yolov5&utm_medium=partner&utm_campaign=partner_yolov5_2022&utm_content=github_readme). ```shell python train.py \ --img 640 \ --batch 16 \ --epochs 5 \ --data coco128.yaml \ --weights yolov5s.pt \ --bbox_interval 2 # Log predictions every 2nd validation batch per epoch ``` #### Controlling the Number of Prediction Images Adjust the maximum number of validation images logged using the `COMET_MAX_IMAGE_UPLOADS` environment variable. ```shell env COMET_MAX_IMAGE_UPLOADS=200 python train.py \ --img 640 \ --batch 16 \ --epochs 5 \ --data coco128.yaml \ --weights yolov5s.pt \ --bbox_interval 1 # Log every batch ``` ### Logging Class Level Metrics Enable logging of mAP, precision, recall, and F1-score for each class using the `COMET_LOG_PER_CLASS_METRICS` environment variable. ```shell env COMET_LOG_PER_CLASS_METRICS=true python train.py \ --img 640 \ --batch 16 \ --epochs 5 \ --data coco128.yaml \ --weights yolov5s.pt ``` ## ๐Ÿ’พ Dataset Management with Comet Artifacts Use [Comet Artifacts](https://www.comet.com/docs/v2/guides/data-management/artifacts/) to version, store, and manage your datasets. ### Uploading a Dataset Upload your dataset using the `--upload_dataset` flag. Ensure your dataset follows the structure described in the [Ultralytics Datasets documentation](https://docs.ultralytics.com/datasets/) and the dataset config [YAML](https://www.ultralytics.com/glossary/yaml) file matches the format of `coco128.yaml` (see the [COCO128 dataset docs](https://docs.ultralytics.com/datasets/detect/coco128/)). ```shell python train.py \ --img 640 \ --batch 16 \ --epochs 5 \ --data coco128.yaml \ --weights yolov5s.pt \ --upload_dataset # Upload the dataset specified in coco128.yaml ``` View the uploaded dataset in the Artifacts tab of your Comet Workspace. Comet Artifacts tab showing uploaded dataset Preview data directly in the Comet UI. Comet UI previewing dataset images Artifacts are versioned and support metadata. Comet automatically logs metadata from your dataset `yaml` file. Comet Artifact metadata view ### Using a Saved Artifact To use a dataset stored in Comet Artifacts, update the `path` in your dataset `yaml` file to the Artifact resource URL: ```yaml # contents of artifact.yaml path: "comet:///:" train: images/train # Adjust subdirectory if needed val: images/val # Adjust subdirectory if needed # Other dataset configurations... ``` Then, pass this configuration file to your training script: ```shell python train.py \ --img 640 \ --batch 16 \ --epochs 5 \ --data artifact.yaml \ --weights yolov5s.pt ``` Artifacts track data lineage, showing which experiments used specific dataset versions. Comet Artifact lineage graph ## ๐Ÿ”„ Resuming Training Runs If a training run is interrupted (e.g., due to connection issues), you can resume it using the `--resume` flag with the Comet Run Path (`comet:////`). This restores the model state, hyperparameters, arguments, and downloads necessary Artifacts, continuing logging to the existing Comet Experiment. Learn more about [resuming runs in the Comet documentation](https://www.comet.com/docs/v2/guides/experiment-logging/resume-experiment/). ```shell python train.py \ --resume "comet:////" ``` ## ๐Ÿ” Hyperparameter Optimization (HPO) YOLOv5 integrates with the [Comet Optimizer](https://www.comet.com/docs/v2/guides/hyperparameter-optimization/) for easy hyperparameter sweeps and visualization. This helps in finding the best set of parameters for your model, a process often referred to as [Hyperparameter Tuning](https://docs.ultralytics.com/guides/hyperparameter-tuning/). ### Configuring an Optimizer Sweep Create a [JSON](https://www.ultralytics.com/glossary/json) configuration file defining the sweep parameters, search strategy, and objective metric. An example is provided at `utils/loggers/comet/optimizer_config.json`. Run the sweep using the `hpo.py` script: ```shell python utils/loggers/comet/hpo.py \ --comet_optimizer_config "utils/loggers/comet/optimizer_config.json" ``` The `hpo.py` script accepts the same arguments as `train.py`. Pass additional fixed arguments for the sweep: ```shell python utils/loggers/comet/hpo.py \ --comet_optimizer_config "utils/loggers/comet/optimizer_config.json" \ --save-period 1 \ --bbox_interval 1 ``` ### Running a Sweep in Parallel Execute multiple sweep trials concurrently using the `comet optimizer` command: ```shell comet optimizer -j \ utils/loggers/comet/hpo.py < num_workers > utils/loggers/comet/optimizer_config.json ``` Replace `` with the desired number of parallel processes. ### Visualizing HPO Results Comet offers various visualizations for analyzing sweep results, such as parallel coordinate plots and parameter importance plots. Explore a [project with a completed sweep here](https://www.comet.com/examples/comet-example-yolov5/view/PrlArHGuuhDTKC1UuBmTtOSXD/panels?utm_source=yolov5&utm_medium=partner&utm_campaign=partner_yolov5_2022&utm_content=github_readme). Comet HPO visualization ## ๐Ÿค Contributing Contributions to enhance the YOLOv5-Comet integration are welcome! Please see the [Ultralytics Contributing Guide](https://docs.ultralytics.com/help/contributing/) for more information on how to get involved. Thank you for helping improve this integration!