ultralytics 8.2.30 automated tags and release notes (#13164)
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
This commit is contained in:
parent
6367ff4748
commit
59eedcc3fa
29 changed files with 135 additions and 22 deletions
|
|
@ -64,6 +64,7 @@ Before diving into the usage instructions, be sure to check out the range of [YO
|
|||
|
||||
```python
|
||||
from clearml import Task
|
||||
|
||||
from ultralytics import YOLO
|
||||
|
||||
# Step 1: Creating a ClearML Task
|
||||
|
|
|
|||
|
|
@ -57,6 +57,7 @@ This section provides the Python code used to create the Gradio interface with t
|
|||
```python
|
||||
import gradio as gr
|
||||
import PIL.Image as Image
|
||||
|
||||
from ultralytics import ASSETS, YOLO
|
||||
|
||||
model = YOLO("yolov8n.pt")
|
||||
|
|
|
|||
|
|
@ -403,6 +403,7 @@ Expand sections below for information on how these models were exported and test
|
|||
|
||||
```py
|
||||
import cv2
|
||||
|
||||
from ultralytics import YOLO
|
||||
|
||||
model = YOLO("yolov8n.engine")
|
||||
|
|
|
|||
|
|
@ -64,9 +64,10 @@ Before diving into the usage instructions for YOLOv8 model training with Weights
|
|||
=== "Python"
|
||||
```python
|
||||
import wandb
|
||||
from ultralytics import YOLO
|
||||
from wandb.integration.ultralytics import add_wandb_callback
|
||||
|
||||
from ultralytics import YOLO
|
||||
|
||||
# Step 1: Initialize a Weights & Biases run
|
||||
wandb.init(project="ultralytics", job_type="training")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue