Thanks to visit codestin.com
Credit goes to github.com

Skip to content

LychEe-Mor/Lesson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Lesson

Crack Detection and Recognition based on YOLOv8 %pip install ultralytics from ultralytics import YOLO

Load a model

model = YOLO("yolo11n-seg.yaml") # build a new model from YAML model = YOLO("yolo11n-seg.pt") # load a pretrained model (recommended for training) model = YOLO("yolo11n-seg.yaml").load("yolo11n.pt") # build from YAML and transfer weights

Train the model

results = model.train(data="/kaggle/input/clack1/data.yaml", epochs=300, device=[0, 1], batch=16, workers=8, save_period=50)

About

Crack Detection and Recognition based on YOLOv8

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published