Mkdocs annotations fixes (#7600)

Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
Glenn Jocher 2024-01-15 23:37:37 +01:00 committed by GitHub
parent 22651d01cf
commit b1282544d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 137 additions and 63 deletions

View file

@ -241,6 +241,7 @@ To use Comet:
!!! Example
=== "Python"
```python
# pip install comet_ml
import comet_ml
@ -259,6 +260,7 @@ To use ClearML:
!!! Example
=== "Python"
```python
# pip install clearml
import clearml
@ -277,6 +279,7 @@ To use TensorBoard in [Google Colab](https://colab.research.google.com/github/ul
!!! Example
=== "CLI"
```bash
load_ext tensorboard
tensorboard --logdir ultralytics/runs # replace with 'runs' directory
@ -287,6 +290,7 @@ To use TensorBoard locally run the below command and view results at http://loca
!!! Example
=== "CLI"
```bash
tensorboard --logdir ultralytics/runs # replace with 'runs' directory
```