Add conversion to FEN
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
from ultralytics import YOLO
|
||||
|
||||
def main():
|
||||
model = YOLO("models/unified-nano.pt")
|
||||
model = YOLO("models/yolo11n-seg.pt")
|
||||
model.train(
|
||||
data="./datasets/pieces/unified/data.yaml",
|
||||
data="./datasets/edges/data.yaml",
|
||||
epochs=150,
|
||||
patience=20,
|
||||
imgsz=640,
|
||||
batch=18,
|
||||
batch=12,
|
||||
save_period=10,
|
||||
project="result",
|
||||
name="unified-nano-refined",
|
||||
exist_ok=True,
|
||||
name="edges-nano",
|
||||
exist_ok=False,
|
||||
device = 0
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user