hitit-cuneiform-ocr / code /configs /detection.yaml
savastakan's picture
Initial upload: code + 5 record checkpoints + fuse
f211247 verified
Raw
History Blame Contribute Delete
879 Bytes
# YOLO Detection eğitim parametreleri
# Note: YOLO26 is experimental (yolo26n.pt available but not recommended for production)
model: yolo11m.pt
epochs: 150
imgsz: 1024 # 1280'den düşürüldü (P100 OOM fix)
batch: 8 # GPU başına batch size
patience: 30
device: "0" # Single-GPU device id (ignored when gpus > 1)
gpus: 4 # Number of GPUs (akya-cuda 4x GPU)
workers: 10 # GPU başına worker
name: hitit_det_v1
# Optimizer
optimizer: AdamW
lr0: 0.001
lrf: 0.01
weight_decay: 0.0005
warmup_epochs: 5
# Augmentation — tablet resimleri için optimize
augmentation:
hsv_h: 0.01
hsv_s: 0.2
hsv_v: 0.3
degrees: 5
translate: 0.1
scale: 0.3
shear: 2
flipud: 0.0 # Dikey çevirme YOK (yazı yönü önemli)
fliplr: 0.0 # Yatay çevirme YOK
mosaic: 0.5
mixup: 0.1