Files
object-segmentation/config/app_config.yaml

42 lines
745 B
YAML
Raw Normal View History

2025-12-05 09:42:01 +02:00
database:
2025-12-05 15:30:19 +02:00
path: data/detections.db
2025-12-05 09:42:01 +02:00
image_repository:
2025-12-05 15:30:19 +02:00
base_path: ''
2025-12-05 09:42:01 +02:00
allowed_extensions:
2025-12-05 15:30:19 +02:00
- .jpg
- .jpeg
- .png
- .tif
- .tiff
- .bmp
2025-12-05 09:42:01 +02:00
models:
2025-12-05 15:30:19 +02:00
default_base_model: yolov8s.pt
models_directory: data/models
2025-12-05 09:42:01 +02:00
training:
default_epochs: 100
default_batch_size: 16
default_imgsz: 640
default_patience: 50
default_lr0: 0.01
detection:
default_confidence: 0.25
default_iou: 0.45
max_batch_size: 100
visualization:
bbox_colors:
2025-12-05 15:30:19 +02:00
organelle: '#FF6B6B'
membrane_branch: '#4ECDC4'
default: '#00FF00'
2025-12-05 09:42:01 +02:00
bbox_thickness: 2
font_size: 12
export:
formats:
2025-12-05 15:30:19 +02:00
- csv
- json
- excel
default_format: csv
2025-12-05 09:42:01 +02:00
logging:
2025-12-05 15:30:19 +02:00
level: INFO
file: logs/app.log
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'