2025-05-20 10:31:35 -04:00
|
|
|
general:
|
|
|
|
# Run mode. Options are 'prod' or 'dev'.
|
|
|
|
run_mode: prod
|
|
|
|
|
|
|
|
dataset:
|
|
|
|
input_dir: "recordings"
|
|
|
|
num_slices: 8
|
|
|
|
train_split: 0.8
|
|
|
|
val_split : 0.2
|
|
|
|
seed: 42
|
|
|
|
output_dir: "data"
|
|
|
|
|
|
|
|
training:
|
|
|
|
batch_size: 64
|
|
|
|
epochs: 50
|
|
|
|
learning_rate: 0.001
|
|
|
|
checkpoint_path: "checkpoints/model.ckpt"
|
|
|
|
use_gpu: true
|
|
|
|
|
|
|
|
inference:
|
|
|
|
model_path: "checkpoints/model.ckpt"
|
|
|
|
num_classes: 10
|
2025-05-20 10:43:56 -04:00
|
|
|
output_path: "results/output.json"
|
2025-05-20 10:31:35 -04:00
|
|
|
|
|
|
|
app:
|
|
|
|
build_dir: "dist"
|