Try in Colab
pip install before you run your YOLO experiments. All W&B logging features are compatible with data-parallel multi-GPU training, such as with PyTorch DDP.
Track core experiments
Simply by installingwandb, you’ll activate the built-in W&B logging features: system metrics, model metrics, and media logged to interactive Dashboards. 
Customize the integration
By passing a few simple command line arguments to YOLO, you can take advantage of even more W&B features.- If you pass a number to
--save_period, W&B saves a model version at the end of everysave_periodepochs. The model version includes the model weights and tags the best-performing model in the validation set. - Turning on the
--upload_datasetflag will also upload the dataset for data versioning. - Passing a number to
--bbox_intervalwill turn on data visualization. At the end of everybbox_intervalepochs, the outputs of the model on the validation set will be uploaded to W&B.
- Model Versioning Only
- Model Versioning and Data Visualization
Every W&B account comes with 100 GB of free storage for datasets and models.


With data and model versioning, you can resume paused or crashed experiments from any device, no setup necessary. Check out the Colab for details.