You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
498 B
18 lines
498 B
# Development configuration for EMCAD
|
|
|
|
# Inherits from default.yaml
|
|
_base_: "./default.yaml"
|
|
|
|
# Override specific settings for development
|
|
data:
|
|
batch_size: 2 # Smaller batch size for development
|
|
num_workers: 2 # Fewer workers for development
|
|
|
|
training:
|
|
max_epochs: 10 # Fewer epochs for development
|
|
max_iterations: 500 # Fewer iterations for development
|
|
deterministic: false # Non-deterministic for faster training
|
|
|
|
logging:
|
|
level: "DEBUG" # More verbose logging for development
|