Auto-update Docs Reference section action (#13127)
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
This commit is contained in:
parent
2e65e6fcb3
commit
627453c26a
15 changed files with 116 additions and 37 deletions
17
.github/workflows/ci.yaml
vendored
17
.github/workflows/ci.yaml
vendored
|
|
@ -43,6 +43,9 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref || github.ref }}
|
||||||
|
fetch-depth: 0
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
|
|
@ -50,6 +53,20 @@ jobs:
|
||||||
cache: "pip" # caching pip dependencies
|
cache: "pip" # caching pip dependencies
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: pip install tqdm mkdocs-material "mkdocstrings[python]" mkdocs-jupyter mkdocs-redirects mkdocs-ultralytics-plugin
|
run: pip install tqdm mkdocs-material "mkdocstrings[python]" mkdocs-jupyter mkdocs-redirects mkdocs-ultralytics-plugin
|
||||||
|
- name: Update Docs Reference Section
|
||||||
|
run: python docs/build_reference.py
|
||||||
|
- name: Commit and Push Changes
|
||||||
|
run: |
|
||||||
|
git add .
|
||||||
|
git reset HEAD -- .github/workflows/ # workflow changes are not permitted with default token
|
||||||
|
if ! git diff --staged --quiet; then
|
||||||
|
git config --global user.name "UltralyticsAssistant"
|
||||||
|
git config --global user.email "web@ultralytics.com"
|
||||||
|
git commit -m "Auto-update Ultralytics Docs by https://ultralytics.com/actions"
|
||||||
|
git push
|
||||||
|
else
|
||||||
|
echo "No changes to commit"
|
||||||
|
fi
|
||||||
- name: Build Docs and Check for Warnings
|
- name: Build Docs and Check for Warnings
|
||||||
run: python docs/build_docs.py
|
run: python docs/build_docs.py
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,13 +7,13 @@ Note: Must be run from repository root directory. Do not run from docs directory
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
import subprocess
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
# Get package root i.e. /Users/glennjocher/PycharmProjects/ultralytics/ultralytics
|
|
||||||
from ultralytics.utils import ROOT as PACKAGE_DIR
|
|
||||||
|
|
||||||
# Constants
|
# Constants
|
||||||
|
FILE = Path(__file__).resolve()
|
||||||
|
PACKAGE_DIR = FILE.parents[1] / "ultralytics" # i.e. /Users/glennjocher/PycharmProjects/ultralytics/ultralytics
|
||||||
REFERENCE_DIR = PACKAGE_DIR.parent / "docs/en/reference"
|
REFERENCE_DIR = PACKAGE_DIR.parent / "docs/en/reference"
|
||||||
GITHUB_REPO = "ultralytics/ultralytics"
|
GITHUB_REPO = "ultralytics/ultralytics"
|
||||||
|
|
||||||
|
|
@ -33,15 +33,18 @@ def extract_classes_and_functions(filepath: Path) -> tuple:
|
||||||
def create_markdown(py_filepath: Path, module_path: str, classes: list, functions: list):
|
def create_markdown(py_filepath: Path, module_path: str, classes: list, functions: list):
|
||||||
"""Creates a Markdown file containing the API reference for the given Python module."""
|
"""Creates a Markdown file containing the API reference for the given Python module."""
|
||||||
md_filepath = py_filepath.with_suffix(".md")
|
md_filepath = py_filepath.with_suffix(".md")
|
||||||
|
exists = md_filepath.exists()
|
||||||
|
|
||||||
# Read existing content and keep header content between first two ---
|
# Read existing content and keep header content between first two ---
|
||||||
header_content = ""
|
header_content = ""
|
||||||
if md_filepath.exists():
|
if exists:
|
||||||
existing_content = md_filepath.read_text()
|
existing_content = md_filepath.read_text()
|
||||||
header_parts = existing_content.split("---")
|
header_parts = existing_content.split("---")
|
||||||
for part in header_parts:
|
for part in header_parts:
|
||||||
if "description:" in part or "comments:" in part:
|
if "description:" in part or "comments:" in part:
|
||||||
header_content += f"---{part}---\n\n"
|
header_content += f"---{part}---\n\n"
|
||||||
|
if not any(header_content):
|
||||||
|
header_content = "---\ndescription: TODO ADD DESCRIPTION\nkeywords: TODO ADD KEYWORDS\n---\n\n"
|
||||||
|
|
||||||
module_name = module_path.replace(".__init__", "")
|
module_name = module_path.replace(".__init__", "")
|
||||||
module_path = module_path.replace(".", "/")
|
module_path = module_path.replace(".", "/")
|
||||||
|
|
@ -62,6 +65,11 @@ def create_markdown(py_filepath: Path, module_path: str, classes: list, function
|
||||||
md_filepath.parent.mkdir(parents=True, exist_ok=True)
|
md_filepath.parent.mkdir(parents=True, exist_ok=True)
|
||||||
md_filepath.write_text(md_content)
|
md_filepath.write_text(md_content)
|
||||||
|
|
||||||
|
if not exists:
|
||||||
|
# Add new markdown file to the git staging area
|
||||||
|
print(f"Created new file '{md_filepath}'")
|
||||||
|
subprocess.run(["git", "add", "-f", str(md_filepath)], check=True)
|
||||||
|
|
||||||
return md_filepath.relative_to(PACKAGE_DIR.parent)
|
return md_filepath.relative_to(PACKAGE_DIR.parent)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,7 @@ Parking management with [Ultralytics YOLOv8](https://github.com/ultralytics/ultr
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from ultralytics import solutions
|
from ultralytics import solutions
|
||||||
|
|
||||||
solutions.ParkingPtsSelection()
|
solutions.ParkingPtsSelection()
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,23 +5,19 @@ keywords: Ultralytics, YOLOv8, object detection, image segmentation, machine lea
|
||||||
---
|
---
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<p>
|
<a href="https://github.com/ultralytics/assets/releases/tag/v8.2.0" target="_blank"><img width="1024%" src="https://raw.githubusercontent.com/ultralytics/assets/main/yolov8/banner-yolov8.png" alt="Ultralytics YOLO banner"></a>
|
||||||
<a href="https://github.com/ultralytics/assets/releases/tag/v8.2.0" target="_blank">
|
<a href="https://docs.ultralytics.com/zh/">中文</a> |
|
||||||
<img width="1024" src="https://raw.githubusercontent.com/ultralytics/assets/main/yolov8/banner-yolov8.png" alt="Ultralytics YOLO banner"></a>
|
<a href="https://docs.ultralytics.com/ko/">한국어</a> |
|
||||||
</p>
|
<a href="https://docs.ultralytics.com/ja/">日本語</a> |
|
||||||
<a href="https://github.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-github.png" width="3%" alt="Ultralytics GitHub"></a>
|
<a href="https://docs.ultralytics.com/ru/">Русский</a> |
|
||||||
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
<a href="https://docs.ultralytics.com/de/">Deutsch</a> |
|
||||||
<a href="https://www.linkedin.com/company/ultralytics/"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-linkedin.png" width="3%" alt="Ultralytics LinkedIn"></a>
|
<a href="https://docs.ultralytics.com/fr/">Français</a> |
|
||||||
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
<a href="https://docs.ultralytics.com/es/">Español</a> |
|
||||||
<a href="https://twitter.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-twitter.png" width="3%" alt="Ultralytics Twitter"></a>
|
<a href="https://docs.ultralytics.com/pt/">Português</a> |
|
||||||
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
<a href="https://docs.ultralytics.com/tr/">Türkçe</a> |
|
||||||
<a href="https://youtube.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-youtube.png" width="3%" alt="Ultralytics YouTube"></a>
|
<a href="https://docs.ultralytics.com/vi/">Tiếng Việt</a> |
|
||||||
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
<a href="https://docs.ultralytics.com/hi/">हिन्दी</a> |
|
||||||
<a href="https://www.tiktok.com/@ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-tiktok.png" width="3%" alt="Ultralytics TikTok"></a>
|
<a href="https://docs.ultralytics.com/ar/">العربية</a>
|
||||||
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
|
||||||
<a href="https://www.instagram.com/ultralytics/"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-instagram.png" width="3%" alt="Ultralytics Instagram"></a>
|
|
||||||
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
|
||||||
<a href="https://ultralytics.com/discord"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-discord.png" width="3%" alt="Ultralytics Discord"></a>
|
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<a href="https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml"><img src="https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml/badge.svg" alt="Ultralytics CI"></a>
|
<a href="https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml"><img src="https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml/badge.svg" alt="Ultralytics CI"></a>
|
||||||
|
|
@ -39,6 +35,24 @@ Introducing [Ultralytics](https://ultralytics.com) [YOLOv8](https://github.com/u
|
||||||
|
|
||||||
Explore the YOLOv8 Docs, a comprehensive resource designed to help you understand and utilize its features and capabilities. Whether you are a seasoned machine learning practitioner or new to the field, this hub aims to maximize YOLOv8's potential in your projects
|
Explore the YOLOv8 Docs, a comprehensive resource designed to help you understand and utilize its features and capabilities. Whether you are a seasoned machine learning practitioner or new to the field, this hub aims to maximize YOLOv8's potential in your projects
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
<br>
|
||||||
|
<a href="https://github.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-github.png" width="3%" alt="Ultralytics GitHub"></a>
|
||||||
|
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
||||||
|
<a href="https://www.linkedin.com/company/ultralytics/"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-linkedin.png" width="3%" alt="Ultralytics LinkedIn"></a>
|
||||||
|
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
||||||
|
<a href="https://twitter.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-twitter.png" width="3%" alt="Ultralytics Twitter"></a>
|
||||||
|
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
||||||
|
<a href="https://youtube.com/ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-youtube.png" width="3%" alt="Ultralytics YouTube"></a>
|
||||||
|
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
||||||
|
<a href="https://www.tiktok.com/@ultralytics"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-tiktok.png" width="3%" alt="Ultralytics TikTok"></a>
|
||||||
|
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
||||||
|
<a href="https://www.instagram.com/ultralytics/"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-instagram.png" width="3%" alt="Ultralytics Instagram"></a>
|
||||||
|
<img src="https://github.com/ultralytics/assets/raw/main/social/logo-transparent.png" width="3%" alt="space">
|
||||||
|
<a href="https://ultralytics.com/discord"><img src="https://github.com/ultralytics/assets/raw/main/social/logo-social-discord.png" width="3%" alt="Ultralytics Discord"></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
## Where to Start
|
## Where to Start
|
||||||
|
|
||||||
- **Install** `ultralytics` with pip and get up and running in minutes [:material-clock-fast: Get Started](quickstart.md){ .md-button }
|
- **Install** `ultralytics` with pip and get up and running in minutes [:material-clock-fast: Get Started](quickstart.md){ .md-button }
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
---
|
||||||
|
description: Detailed guide on the Ultralytics YOLO WorldTrainer class, including methods for fine-tuning world models and dataset building.
|
||||||
|
keywords: Ultralytics, YOLO, WorldTrainer, WorldModel, training, dataset, machine learning, AI, deep learning, computer vision, ViT-B/32, clip
|
||||||
|
---
|
||||||
|
|
||||||
# Reference for `ultralytics/models/yolo/world/train.py`
|
# Reference for `ultralytics/models/yolo/world/train.py`
|
||||||
|
|
||||||
!!! Note
|
!!! Note
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
---
|
||||||
|
description: Comprehensive guide on the WorldTrainerFromScratch class for training YOLO world models from scratch on open-set datasets.
|
||||||
|
keywords: YOLO, WorldTrainerFromScratch, Ultralytics, YOLO world models, open-set datasets, deep learning, machine learning, computer vision, dataset building, ViT-B/32, CLIP, training
|
||||||
|
---
|
||||||
|
|
||||||
# Reference for `ultralytics/models/yolo/world/train_world.py`
|
# Reference for `ultralytics/models/yolo/world/train_world.py`
|
||||||
|
|
||||||
!!! Note
|
!!! Note
|
||||||
|
|
|
||||||
16
docs/en/reference/solutions/analytics.md
Normal file
16
docs/en/reference/solutions/analytics.md
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
description: This script integrates Ultralytics YOLO with OpenCV and Matplotlib to create and update line, bar, and pie charts for real-time data visualization in video processing.
|
||||||
|
keywords: Ultralytics, YOLO, data visualization, OpenCV, Matplotlib, line chart, bar chart, pie chart, real-time analytics, video processing, machine learning, computer vision, AGPL-3.0
|
||||||
|
---
|
||||||
|
|
||||||
|
# Reference for `ultralytics/solutions/analytics.py`
|
||||||
|
|
||||||
|
!!! Note
|
||||||
|
|
||||||
|
This file is available at [https://github.com/ultralytics/ultralytics/blob/main/ultralytics/solutions/analytics.py](https://github.com/ultralytics/ultralytics/blob/main/ultralytics/solutions/analytics.py). If you spot a problem please help fix it by [contributing](/help/contributing.md) a [Pull Request](https://github.com/ultralytics/ultralytics/edit/main/ultralytics/solutions/analytics.py) 🛠️. Thank you 🙏!
|
||||||
|
|
||||||
|
<br><br>
|
||||||
|
|
||||||
|
## ::: ultralytics.solutions.analytics.Analytics
|
||||||
|
|
||||||
|
<br><br>
|
||||||
|
|
@ -16,6 +16,7 @@
|
||||||
78843978+Skillnoob@users.noreply.github.com: Skillnoob
|
78843978+Skillnoob@users.noreply.github.com: Skillnoob
|
||||||
79740115+0xSynapse@users.noreply.github.com: 0xSynapse
|
79740115+0xSynapse@users.noreply.github.com: 0xSynapse
|
||||||
abirami.vina@gmail.com: abirami-vina
|
abirami.vina@gmail.com: abirami-vina
|
||||||
|
andrei.kochin@intel.com: andrei-kochin
|
||||||
ayush.chaurarsia@gmail.com: AyushExel
|
ayush.chaurarsia@gmail.com: AyushExel
|
||||||
chr043416@gmail.com: RizwanMunawar
|
chr043416@gmail.com: RizwanMunawar
|
||||||
glenn.jocher@ultralytics.com: glenn-jocher
|
glenn.jocher@ultralytics.com: glenn-jocher
|
||||||
|
|
@ -28,4 +29,3 @@ priytosh.revolution@live.com: priytosh-tripathi
|
||||||
shuizhuyuanluo@126.com: null
|
shuizhuyuanluo@126.com: null
|
||||||
stormsson@users.noreply.github.com: stormsson
|
stormsson@users.noreply.github.com: stormsson
|
||||||
xinwang614@gmail.com: GreatV
|
xinwang614@gmail.com: GreatV
|
||||||
andrei.kochin@intel.com: andrei-kochin
|
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,9 @@
|
||||||
"source": [
|
"source": [
|
||||||
"# Setup\n",
|
"# Setup\n",
|
||||||
"\n",
|
"\n",
|
||||||
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware."
|
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware.\n",
|
||||||
|
"\n",
|
||||||
|
"[](https://pypi.org/project/ultralytics/) [](https://pepy.tech/project/ultralytics) [](https://pypi.org/project/ultralytics/)"
|
||||||
],
|
],
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"id": "o68Sg1oOeZm2"
|
"id": "o68Sg1oOeZm2"
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,9 @@
|
||||||
"source": [
|
"source": [
|
||||||
"# Setup\n",
|
"# Setup\n",
|
||||||
"\n",
|
"\n",
|
||||||
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware."
|
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware.\n",
|
||||||
|
"\n",
|
||||||
|
"[](https://pypi.org/project/ultralytics/) [](https://pepy.tech/project/ultralytics) [](https://pypi.org/project/ultralytics/)"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,9 @@
|
||||||
"source": [
|
"source": [
|
||||||
"# Setup\n",
|
"# Setup\n",
|
||||||
"\n",
|
"\n",
|
||||||
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware."
|
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware.\n",
|
||||||
|
"\n",
|
||||||
|
"[](https://pypi.org/project/ultralytics/) [](https://pepy.tech/project/ultralytics) [](https://pypi.org/project/ultralytics/)"
|
||||||
],
|
],
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"id": "o68Sg1oOeZm2"
|
"id": "o68Sg1oOeZm2"
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,9 @@
|
||||||
"source": [
|
"source": [
|
||||||
"# Setup\n",
|
"# Setup\n",
|
||||||
"\n",
|
"\n",
|
||||||
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware."
|
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware.\n",
|
||||||
|
"\n",
|
||||||
|
"[](https://pypi.org/project/ultralytics/) [](https://pepy.tech/project/ultralytics) [](https://pypi.org/project/ultralytics/)"
|
||||||
],
|
],
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"id": "o68Sg1oOeZm2"
|
"id": "o68Sg1oOeZm2"
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,9 @@
|
||||||
"source": [
|
"source": [
|
||||||
"# Setup\n",
|
"# Setup\n",
|
||||||
"\n",
|
"\n",
|
||||||
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware."
|
"Pip install `ultralytics` and [dependencies](https://github.com/ultralytics/ultralytics/blob/main/pyproject.toml) and check software and hardware.\n",
|
||||||
|
"\n",
|
||||||
|
"[](https://pypi.org/project/ultralytics/) [](https://pepy.tech/project/ultralytics) [](https://pypi.org/project/ultralytics/)"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -67,7 +69,7 @@
|
||||||
"import ultralytics\n",
|
"import ultralytics\n",
|
||||||
"ultralytics.checks()"
|
"ultralytics.checks()"
|
||||||
],
|
],
|
||||||
"execution_count": 1,
|
"execution_count": null,
|
||||||
"outputs": [
|
"outputs": [
|
||||||
{
|
{
|
||||||
"output_type": "stream",
|
"output_type": "stream",
|
||||||
|
|
@ -103,7 +105,7 @@
|
||||||
"# Run inference on an image with YOLOv8n\n",
|
"# Run inference on an image with YOLOv8n\n",
|
||||||
"!yolo predict model=yolov8n.pt source='https://ultralytics.com/images/zidane.jpg'"
|
"!yolo predict model=yolov8n.pt source='https://ultralytics.com/images/zidane.jpg'"
|
||||||
],
|
],
|
||||||
"execution_count": 2,
|
"execution_count": null,
|
||||||
"outputs": [
|
"outputs": [
|
||||||
{
|
{
|
||||||
"output_type": "stream",
|
"output_type": "stream",
|
||||||
|
|
@ -171,7 +173,7 @@
|
||||||
"# Validate YOLOv8n on COCO8 val\n",
|
"# Validate YOLOv8n on COCO8 val\n",
|
||||||
"!yolo val model=yolov8n.pt data=coco8.yaml"
|
"!yolo val model=yolov8n.pt data=coco8.yaml"
|
||||||
],
|
],
|
||||||
"execution_count": 3,
|
"execution_count": null,
|
||||||
"outputs": [
|
"outputs": [
|
||||||
{
|
{
|
||||||
"output_type": "stream",
|
"output_type": "stream",
|
||||||
|
|
@ -250,7 +252,7 @@
|
||||||
"# Train YOLOv8n on COCO8 for 3 epochs\n",
|
"# Train YOLOv8n on COCO8 for 3 epochs\n",
|
||||||
"!yolo train model=yolov8n.pt data=coco8.yaml epochs=3 imgsz=640"
|
"!yolo train model=yolov8n.pt data=coco8.yaml epochs=3 imgsz=640"
|
||||||
],
|
],
|
||||||
"execution_count": 4,
|
"execution_count": null,
|
||||||
"outputs": [
|
"outputs": [
|
||||||
{
|
{
|
||||||
"output_type": "stream",
|
"output_type": "stream",
|
||||||
|
|
@ -384,7 +386,7 @@
|
||||||
"id": "CYIjW4igCjqD",
|
"id": "CYIjW4igCjqD",
|
||||||
"outputId": "947e65cc-79c8-4713-bfd4-3139903ac05a"
|
"outputId": "947e65cc-79c8-4713-bfd4-3139903ac05a"
|
||||||
},
|
},
|
||||||
"execution_count": 5,
|
"execution_count": null,
|
||||||
"outputs": [
|
"outputs": [
|
||||||
{
|
{
|
||||||
"output_type": "stream",
|
"output_type": "stream",
|
||||||
|
|
|
||||||
|
|
@ -171,6 +171,8 @@ nav:
|
||||||
- 🇫🇷  Français: https://docs.ultralytics.com/fr/
|
- 🇫🇷  Français: https://docs.ultralytics.com/fr/
|
||||||
- 🇪🇸  Español: https://docs.ultralytics.com/es/
|
- 🇪🇸  Español: https://docs.ultralytics.com/es/
|
||||||
- 🇵🇹  Português: https://docs.ultralytics.com/pt/
|
- 🇵🇹  Português: https://docs.ultralytics.com/pt/
|
||||||
|
- 🇹🇷  Türkçe: https://docs.ultralytics.com/tr/
|
||||||
|
- 🇻🇳  Tiếng Việt: https://docs.ultralytics.com/vi/
|
||||||
- 🇮🇳  हिन्दी: https://docs.ultralytics.com/hi/
|
- 🇮🇳  हिन्दी: https://docs.ultralytics.com/hi/
|
||||||
- 🇸🇦  العربية: https://docs.ultralytics.com/ar/
|
- 🇸🇦  العربية: https://docs.ultralytics.com/ar/
|
||||||
- Quickstart:
|
- Quickstart:
|
||||||
|
|
@ -499,6 +501,7 @@ nav:
|
||||||
- tasks: reference/nn/tasks.md
|
- tasks: reference/nn/tasks.md
|
||||||
- solutions:
|
- solutions:
|
||||||
- ai_gym: reference/solutions/ai_gym.md
|
- ai_gym: reference/solutions/ai_gym.md
|
||||||
|
- analytics: reference/solutions/analytics.md
|
||||||
- distance_calculation: reference/solutions/distance_calculation.md
|
- distance_calculation: reference/solutions/distance_calculation.md
|
||||||
- heatmap: reference/solutions/heatmap.md
|
- heatmap: reference/solutions/heatmap.md
|
||||||
- object_counter: reference/solutions/object_counter.md
|
- object_counter: reference/solutions/object_counter.md
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ class Analytics:
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
type (str): Type of chart to initialize ('line', 'bar', or 'pie').
|
type (str): Type of chart to initialize ('line', 'bar', or 'pie').
|
||||||
writer: Video writer object to save the frames.
|
writer (object): Video writer object to save the frames.
|
||||||
im0_shape (tuple): Shape of the input image (width, height).
|
im0_shape (tuple): Shape of the input image (width, height).
|
||||||
title (str): Title of the chart.
|
title (str): Title of the chart.
|
||||||
x_label (str): Label for the x-axis.
|
x_label (str): Label for the x-axis.
|
||||||
|
|
@ -64,7 +64,7 @@ class Analytics:
|
||||||
self.ax = fig.add_subplot(111, facecolor=self.bg_color)
|
self.ax = fig.add_subplot(111, facecolor=self.bg_color)
|
||||||
(self.line,) = self.ax.plot([], [], color=line_color, linewidth=line_width)
|
(self.line,) = self.ax.plot([], [], color=line_color, linewidth=line_width)
|
||||||
|
|
||||||
elif type == "bar" or type == "pie":
|
elif type in {"bar", "pie"}:
|
||||||
# Initialize bar or pie plot
|
# Initialize bar or pie plot
|
||||||
self.fig, self.ax = plt.subplots(figsize=figsize, facecolor=self.bg_color)
|
self.fig, self.ax = plt.subplots(figsize=figsize, facecolor=self.bg_color)
|
||||||
self.ax.set_facecolor(self.bg_color)
|
self.ax.set_facecolor(self.bg_color)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue