Small update
This commit is contained in:
@@ -1,48 +1,41 @@
|
|||||||
database:
|
database:
|
||||||
path: "data/detections.db"
|
path: data/detections.db
|
||||||
|
|
||||||
image_repository:
|
image_repository:
|
||||||
base_path: "" # Set by user through GUI
|
base_path: ''
|
||||||
allowed_extensions:
|
allowed_extensions:
|
||||||
- ".jpg"
|
- .jpg
|
||||||
- ".jpeg"
|
- .jpeg
|
||||||
- ".png"
|
- .png
|
||||||
- ".tif"
|
- .tif
|
||||||
- ".tiff"
|
- .tiff
|
||||||
- ".bmp"
|
- .bmp
|
||||||
|
|
||||||
models:
|
models:
|
||||||
default_base_model: "yolov8s.pt"
|
default_base_model: yolov8s.pt
|
||||||
models_directory: "data/models"
|
models_directory: data/models
|
||||||
|
|
||||||
training:
|
training:
|
||||||
default_epochs: 100
|
default_epochs: 100
|
||||||
default_batch_size: 16
|
default_batch_size: 16
|
||||||
default_imgsz: 640
|
default_imgsz: 640
|
||||||
default_patience: 50
|
default_patience: 50
|
||||||
default_lr0: 0.01
|
default_lr0: 0.01
|
||||||
|
|
||||||
detection:
|
detection:
|
||||||
default_confidence: 0.25
|
default_confidence: 0.25
|
||||||
default_iou: 0.45
|
default_iou: 0.45
|
||||||
max_batch_size: 100
|
max_batch_size: 100
|
||||||
|
|
||||||
visualization:
|
visualization:
|
||||||
bbox_colors:
|
bbox_colors:
|
||||||
organelle: "#FF6B6B"
|
organelle: '#FF6B6B'
|
||||||
membrane_branch: "#4ECDC4"
|
membrane_branch: '#4ECDC4'
|
||||||
default: "#00FF00"
|
default: '#00FF00'
|
||||||
bbox_thickness: 2
|
bbox_thickness: 2
|
||||||
font_size: 12
|
font_size: 12
|
||||||
|
|
||||||
export:
|
export:
|
||||||
formats:
|
formats:
|
||||||
- csv
|
- csv
|
||||||
- json
|
- json
|
||||||
- excel
|
- excel
|
||||||
default_format: "csv"
|
default_format: csv
|
||||||
|
|
||||||
logging:
|
logging:
|
||||||
level: "INFO"
|
level: INFO
|
||||||
file: "logs/app.log"
|
file: logs/app.log
|
||||||
format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
|
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
|
||||||
|
|||||||
Reference in New Issue
Block a user