ultralytics 8.2.70 Segment Anything Model 2 (SAM 2) (#14813)
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
80f699ae21
commit
8648572809
36 changed files with 3276 additions and 77 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# Ultralytics YOLO 🚀, AGPL-3.0 license
|
||||
|
||||
__version__ = "8.2.69"
|
||||
__version__ = "8.2.70"
|
||||
|
||||
import os
|
||||
|
||||
|
|
@ -8,7 +8,7 @@ import os
|
|||
os.environ["OMP_NUM_THREADS"] = "1" # reduce CPU utilization during training
|
||||
|
||||
from ultralytics.data.explorer.explorer import Explorer
|
||||
from ultralytics.models import NAS, RTDETR, SAM, YOLO, FastSAM, YOLOWorld
|
||||
from ultralytics.models import NAS, RTDETR, SAM, SAM2, YOLO, FastSAM, YOLOWorld
|
||||
from ultralytics.utils import ASSETS, SETTINGS
|
||||
from ultralytics.utils.checks import check_yolo as checks
|
||||
from ultralytics.utils.downloads import download
|
||||
|
|
@ -21,6 +21,7 @@ __all__ = (
|
|||
"YOLOWorld",
|
||||
"NAS",
|
||||
"SAM",
|
||||
"SAM2",
|
||||
"FastSAM",
|
||||
"RTDETR",
|
||||
"checks",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue