General trainer cleanup (#147)
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Laughing <61612323+Laughing-q@users.noreply.github.com>single_channel
parent
f8a13c49a0
commit
0e5a7ae623
@ -0,0 +1,94 @@
|
||||
from ultralytics import YOLO
|
||||
from ultralytics.yolo.configs import get_config
|
||||
from ultralytics.yolo.utils import DEFAULT_CONFIG, ROOT
|
||||
from ultralytics.yolo.v8 import classify, detect, segment
|
||||
|
||||
CFG_DET = 'yolov8n.yaml'
|
||||
CFG_SEG = 'yolov8n-seg.yaml'
|
||||
CFG_CLS = 'squeezenet1_0'
|
||||
CFG = get_config(DEFAULT_CONFIG)
|
||||
SOURCE = ROOT / "assets"
|
||||
|
||||
|
||||
def test_detect():
|
||||
overrides = {"data": "coco128.yaml", "model": CFG_DET, "imgsz": 32, "epochs": 1, "save": False}
|
||||
CFG.data = "coco128.yaml"
|
||||
# trainer
|
||||
trainer = detect.DetectionTrainer(overrides=overrides)
|
||||
trainer.train()
|
||||
trained_model = trainer.best
|
||||
|
||||
# Validator
|
||||
val = detect.DetectionValidator(args=CFG)
|
||||
val(model=trained_model)
|
||||
|
||||
# predictor
|
||||
pred = detect.DetectionPredictor(overrides={"imgsz": [640, 640]})
|
||||
pred(source=SOURCE, model=trained_model)
|
||||
|
||||
overrides["resume"] = trainer.last
|
||||
trainer = detect.DetectionTrainer(overrides=overrides)
|
||||
try:
|
||||
trainer.train()
|
||||
except Exception as e:
|
||||
print(f"Expected exception caught: {e}")
|
||||
return
|
||||
|
||||
Exception("Resume test failed!")
|
||||
|
||||
|
||||
def test_segment():
|
||||
overrides = {"data": "coco128-seg.yaml", "model": CFG_SEG, "imgsz": 32, "epochs": 1, "save": False}
|
||||
CFG.data = "coco128-seg.yaml"
|
||||
CFG.v5loader = False
|
||||
|
||||
# YOLO(CFG_SEG).train(**overrides) # This works
|
||||
# trainer
|
||||
trainer = segment.SegmentationTrainer(overrides=overrides)
|
||||
trainer.train()
|
||||
trained_model = trainer.best
|
||||
|
||||
# Validator
|
||||
val = segment.SegmentationValidator(args=CFG)
|
||||
val(model=trained_model)
|
||||
|
||||
# predictor
|
||||
pred = segment.SegmentationPredictor(overrides={"imgsz": [640, 640]})
|
||||
pred(source=SOURCE, model=trained_model)
|
||||
|
||||
# test resume
|
||||
overrides["resume"] = trainer.last
|
||||
trainer = segment.SegmentationTrainer(overrides=overrides)
|
||||
try:
|
||||
trainer.train()
|
||||
except Exception as e:
|
||||
print(f"Expected exception caught: {e}")
|
||||
return
|
||||
|
||||
Exception("Resume test failed!")
|
||||
|
||||
|
||||
def test_classify():
|
||||
overrides = {
|
||||
"data": "imagenette160",
|
||||
"model": "squeezenet1_0",
|
||||
"imgsz": 32,
|
||||
"epochs": 1,
|
||||
"batch": 64,
|
||||
"save": False}
|
||||
CFG.data = "imagenette160"
|
||||
CFG.imgsz = 32
|
||||
CFG.batch = 64
|
||||
# YOLO(CFG_SEG).train(**overrides) # This works
|
||||
# trainer
|
||||
trainer = classify.ClassificationTrainer(overrides=overrides)
|
||||
trainer.train()
|
||||
trained_model = trainer.best
|
||||
|
||||
# Validator
|
||||
val = classify.ClassificationValidator(args=CFG)
|
||||
val(model=trained_model)
|
||||
|
||||
# predictor
|
||||
pred = classify.ClassificationPredictor(overrides={"imgsz": [640, 640]})
|
||||
pred(source=SOURCE, model=trained_model)
|
Loading…
Reference in new issue