Add https://youtu.be/SArFQs6CHwk to docs (#10014)
Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
This commit is contained in:
parent
42416bc608
commit
0f4a4fdf5f
19 changed files with 30 additions and 4 deletions
|
|
@ -16,6 +16,7 @@ from ultralytics.utils.instance import Instances
|
|||
from ultralytics.utils.metrics import bbox_ioa
|
||||
from ultralytics.utils.ops import segment2box, xyxyxyxy2xywhr
|
||||
from ultralytics.utils.torch_utils import TORCHVISION_0_10, TORCHVISION_0_11, TORCHVISION_0_13
|
||||
|
||||
from .utils import polygons2masks, polygons2masks_overlap
|
||||
|
||||
DEFAULT_MEAN = (0.0, 0.0, 0.0)
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ import psutil
|
|||
from torch.utils.data import Dataset
|
||||
|
||||
from ultralytics.utils import DEFAULT_CFG, LOCAL_RANK, LOGGER, NUM_THREADS, TQDM
|
||||
|
||||
from .utils import FORMATS_HELP_MSG, HELP_URL, IMG_FORMATS
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ from ultralytics.data.loaders import (
|
|||
from ultralytics.data.utils import IMG_FORMATS, VID_FORMATS
|
||||
from ultralytics.utils import RANK, colorstr
|
||||
from ultralytics.utils.checks import check_file
|
||||
|
||||
from .dataset import GroundingDataset, YOLODataset, YOLOMultiModalDataset
|
||||
from .utils import PIN_MEMORY
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ from torch.utils.data import ConcatDataset
|
|||
|
||||
from ultralytics.utils import LOCAL_RANK, NUM_THREADS, TQDM, colorstr
|
||||
from ultralytics.utils.ops import resample_segments
|
||||
|
||||
from .augment import (
|
||||
Compose,
|
||||
Format,
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ from typing import Any, List, Tuple, Union
|
|||
import cv2
|
||||
import numpy as np
|
||||
import torch
|
||||
from PIL import Image
|
||||
from matplotlib import pyplot as plt
|
||||
from PIL import Image
|
||||
from tqdm import tqdm
|
||||
|
||||
from ultralytics.data.augment import Format
|
||||
|
|
@ -16,6 +16,7 @@ from ultralytics.data.dataset import YOLODataset
|
|||
from ultralytics.data.utils import check_det_dataset
|
||||
from ultralytics.models.yolo.model import YOLO
|
||||
from ultralytics.utils import LOGGER, USER_CONFIG_DIR, IterableSimpleNamespace, checks
|
||||
|
||||
from .utils import get_sim_index_schema, get_table_schema, plot_query_result, prompt_sql_query, sanitize_batch
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue