diff --git a/docs/hub/models.md b/docs/hub/models.md
index 64e51f8758..a302cd3eb2 100644
--- a/docs/hub/models.md
+++ b/docs/hub/models.md
@@ -174,7 +174,7 @@ Now, anyone who has the direct link to your model can view it.
??? tip "Tip"
- You can easily click on the models's link shown in the **Share Model** dialog to copy it.
+ You can easily click on the model's link shown in the **Share Model** dialog to copy it.
![Ultralytics HUB screenshot of the Share Model dialog with an arrow pointing to the model's link](https://raw.githubusercontent.com/ultralytics/assets/main/docs/hub/models/hub_share_model_4.jpg)
diff --git a/docs/hub/projects.md b/docs/hub/projects.md
index 7dfd45f889..b11aee62b1 100644
--- a/docs/hub/projects.md
+++ b/docs/hub/projects.md
@@ -110,7 +110,7 @@ Navigate to the Project page of the project you want to delete, open the project
!!! warning "Warning"
- When deleting a project, the the models inside the project will be deleted as well.
+ When deleting a project, the models inside the project will be deleted as well.
??? note "Note"
diff --git a/docs/index.md b/docs/index.md
index cf391a5003..77e463f748 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -38,7 +38,7 @@ Explore the YOLOv8 Docs, a comprehensive resource designed to help you understan
allowfullscreen>
-
Watch: How to Train a YOLOv8 model on Your Custom Dataset in Google Colab.
+
Watch: How to Train a YOLOv8 model on Your Custom Dataset in
Google Colab.
## YOLO: A Brief History
diff --git a/docs/integrations/index.md b/docs/integrations/index.md
index 4446756a5b..3ee24ef0cf 100644
--- a/docs/integrations/index.md
+++ b/docs/integrations/index.md
@@ -8,7 +8,7 @@ keywords: Ultralytics integrations, Roboflow, Neural Magic, ClearML, Comet ML, D
Welcome to the Ultralytics Integrations page! This page provides an overview of our partnerships with various tools and platforms, designed to streamline your machine learning workflows, enhance dataset management, simplify model training, and facilitate efficient deployment.
-
+
## Datasets Integrations
diff --git a/docs/integrations/ray-tune.md b/docs/integrations/ray-tune.md
index ec7817c053..46eb5ffba0 100644
--- a/docs/integrations/ray-tune.md
+++ b/docs/integrations/ray-tune.md
@@ -120,11 +120,11 @@ In this example, we demonstrate how to use a custom search space for hyperparame
In the code snippet above, we create a YOLO model with the "yolov8n.pt" pretrained weights. Then, we call the `tune()` method, specifying the dataset configuration with "coco128.yaml". We provide a custom search space for the initial learning rate `lr0` using a dictionary with the key "lr0" and the value `tune.uniform(1e-5, 1e-1)`. Finally, we pass additional training arguments, such as the number of epochs directly to the tune method as `epochs=50`.
-# Processing Ray Tune Results
+## Processing Ray Tune Results
After running a hyperparameter tuning experiment with Ray Tune, you might want to perform various analyses on the obtained results. This guide will take you through common workflows for processing and analyzing these results.
-## Loading Tune Experiment Results from a Directory
+### Loading Tune Experiment Results from a Directory
After running the tuning experiment with `tuner.fit()`, you can load the results from a directory. This is useful, especially if you're performing the analysis after the initial training script has exited.
@@ -136,7 +136,7 @@ restored_tuner = tune.Tuner.restore(experiment_path, trainable=train_mnist)
result_grid = restored_tuner.get_results()
```
-## Basic Experiment-Level Analysis
+### Basic Experiment-Level Analysis
Get an overview of how trials performed. You can quickly check if there were any errors during the trials.
@@ -147,7 +147,7 @@ else:
print("No errors!")
```
-## Basic Trial-Level Analysis
+### Basic Trial-Level Analysis
Access individual trial hyperparameter configurations and the last reported metrics.
@@ -156,7 +156,7 @@ for i, result in enumerate(result_grid):
print(f"Trial #{i}: Configuration: {result.config}, Last Reported Metrics: {result.metrics}")
```
-## Plotting the Entire History of Reported Metrics for a Trial
+### Plotting the Entire History of Reported Metrics for a Trial
You can plot the history of reported metrics for each trial to see how the metrics evolved over time.
diff --git a/docs/modes/benchmark.md b/docs/modes/benchmark.md
index 431ee91793..cdee300fdf 100644
--- a/docs/modes/benchmark.md
+++ b/docs/modes/benchmark.md
@@ -6,7 +6,7 @@ keywords: Ultralytics, YOLOv8, benchmarking, speed profiling, accuracy profiling
# Model Benchmarking with Ultralytics YOLO
-
+
## Introduction
diff --git a/docs/modes/export.md b/docs/modes/export.md
index 5345172cbb..d0c2da00f0 100644
--- a/docs/modes/export.md
+++ b/docs/modes/export.md
@@ -6,7 +6,7 @@ keywords: YOLO, YOLOv8, Ultralytics, Model export, ONNX, TensorRT, CoreML, Tenso
# Model Export with Ultralytics YOLO
-
+
## Introduction
diff --git a/docs/modes/index.md b/docs/modes/index.md
index 315347e9c8..64dc8d9f55 100644
--- a/docs/modes/index.md
+++ b/docs/modes/index.md
@@ -6,7 +6,7 @@ keywords: Ultralytics, YOLOv8, Machine Learning, Object Detection, Training, Val
# Ultralytics YOLOv8 Modes
-
+
## Introduction
diff --git a/docs/modes/predict.md b/docs/modes/predict.md
index be1c71f609..7c92816923 100644
--- a/docs/modes/predict.md
+++ b/docs/modes/predict.md
@@ -6,7 +6,7 @@ keywords: Ultralytics, YOLOv8, predict mode, inference sources, prediction tasks
# Model Prediction with Ultralytics YOLO
-
+
## Introduction
diff --git a/docs/modes/train.md b/docs/modes/train.md
index 7bb462e9b5..e3db6c30d3 100644
--- a/docs/modes/train.md
+++ b/docs/modes/train.md
@@ -6,7 +6,7 @@ keywords: Ultralytics, YOLOv8, YOLO, object detection, train mode, custom datase
# Model Training with Ultralytics YOLO
-
+
## Introduction
diff --git a/docs/modes/val.md b/docs/modes/val.md
index 1e6648cd54..b964ee7b4b 100644
--- a/docs/modes/val.md
+++ b/docs/modes/val.md
@@ -6,7 +6,7 @@ keywords: Ultralytics, YOLO Docs, YOLOv8, validation, model evaluation, hyperpar
# Model Validation with Ultralytics YOLO
-
+
## Introduction
diff --git a/docs/tasks/index.md b/docs/tasks/index.md
index b43dbd300d..c50d164a18 100644
--- a/docs/tasks/index.md
+++ b/docs/tasks/index.md
@@ -7,7 +7,7 @@ keywords: Ultralytics, YOLOv8, Detection, Segmentation, Classification, Pose Est
# Ultralytics YOLOv8 Tasks
-
+
YOLOv8 is an AI framework that supports multiple computer vision **tasks**. The framework can be used to perform [detection](detect.md), [segmentation](segment.md), [classification](classify.md), and [pose](pose.md) estimation. Each of these tasks has a different objective and use case.
diff --git a/docs/zh/index.md b/docs/zh/index.md
index cd67f0bc63..e4ed42f110 100644
--- a/docs/zh/index.md
+++ b/docs/zh/index.md
@@ -29,7 +29,7 @@ keywords: Ultralytics, YOLOv8, 目标检测, 图像分割, 机器学习, 深度
- **安装** `ultralytics` 并通过 pip 在几分钟内开始运行 [:material-clock-fast: 开始使用](https://docs.ultralytics.com/quickstart/){ .md-button }
- **预测** 使用YOLOv8预测新的图像和视频 [:octicons-image-16: 在图像上预测](https://docs.ultralytics.com/predict/){ .md-button }
-- **训练** 在您自己的自定义数据集上训练新的YOLOv8模型 [:fontawesome-solid-brain: 训练模型](https://docs.ultralytics.com/train/){ .md-button }
+- **训练** 在您自己的自定义数据集上训练新的YOLOv8模型 [:fontawesome-solid-brain: 训练模型](https://docs.ultralytics.com/modes/train/){ .md-button }
- **探索** YOLOv8的任务,如分割、分类、姿态和跟踪 [:material-magnify-expand: 探索任务](https://docs.ultralytics.com/tasks/){ .md-button }
@@ -40,7 +40,7 @@ keywords: Ultralytics, YOLOv8, 目标检测, 图像分割, 机器学习, 深度
allowfullscreen>
- 观看: 在Google Colab中如何训练您的自定义数据集上的YOLOv8模型。
+ 观看: 在Google Colab中如何训练您的自定义数据集上的YOLOv8模型。
## YOLO:简史
diff --git a/mkdocs.yml b/mkdocs.yml
index 848e973325..12a352abe3 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -67,7 +67,7 @@ extra:
analytics:
provider: google
property: G-2M5EHKC0BH
- alternate: # language drop-down
+ alternate: # language drop-down
- name: English
link: /
lang: en
@@ -110,8 +110,8 @@ markdown_extensions:
- pymdownx.snippets:
base_path: ./
- pymdownx.emoji:
- emoji_index: !!python/name:materialx.emoji.twemoji # noqa
- emoji_generator: !!python/name:materialx.emoji.to_svg
+ emoji_index: !!python/name:material.extensions.emoji.twemoji
+ emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true