ultralytics 8.1.39 add YOLO-World training (#9268)
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: UltralyticsAssistant <web@ultralytics.com> Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
parent
18036908d4
commit
e9187c1296
34 changed files with 2166 additions and 100 deletions
|
|
@ -1,15 +1,31 @@
|
|||
# Ultralytics YOLO 🚀, AGPL-3.0 license
|
||||
|
||||
from .base import BaseDataset
|
||||
from .build import build_dataloader, build_yolo_dataset, load_inference_source
|
||||
from .dataset import ClassificationDataset, SemanticDataset, YOLODataset
|
||||
from .build import (
|
||||
build_dataloader,
|
||||
build_yolo_dataset,
|
||||
build_grounding,
|
||||
load_inference_source,
|
||||
)
|
||||
from .dataset import (
|
||||
ClassificationDataset,
|
||||
SemanticDataset,
|
||||
YOLODataset,
|
||||
YOLOMultiModalDataset,
|
||||
GroundingDataset,
|
||||
YOLOConcatDataset,
|
||||
)
|
||||
|
||||
__all__ = (
|
||||
"BaseDataset",
|
||||
"ClassificationDataset",
|
||||
"SemanticDataset",
|
||||
"YOLODataset",
|
||||
"YOLOMultiModalDataset",
|
||||
"YOLOConcatDataset",
|
||||
"GroundingDataset",
|
||||
"build_yolo_dataset",
|
||||
"build_grounding",
|
||||
"build_dataloader",
|
||||
"load_inference_source",
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue