Spaces:
Build error
Build error
File size: 1,845 Bytes
1865436 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# @package _global_
# specify here default training configuration
defaults:
- _self_
- datamodule: tc.yaml
- model: tc.yaml
- callbacks: default.yaml
- logger: tensorboard.yaml # set logger here or use command line (e.g. `python train.py logger=tensorboard`)
- trainer: default.yaml
- log_dir: default.yaml
# experiment configs allow for version control of specific configurations
# e.g. best hyperparameters for each combination of model and datamodule
- experiment: null
# debugging config (enable through command line, e.g. `python train.py debug=default)
- debug: null
# config for hyperparameter optimization
- hparams_search: null
# optional local config for machine/user specific settings
# it's optional since it doesn't need to exist and is excluded from version control
- optional local: default.yaml
# enable color logging
- override hydra/hydra_logging: colorlog
- override hydra/job_logging: colorlog
# path to original working directory
# hydra hijacks working directory by changing it to the new log directory
# https://hydra.cc/docs/next/tutorials/basic/running_your_app/working_directory
original_work_dir: ${hydra:runtime.cwd}
# path to folder with data
data_dir: ${original_work_dir}/data
# pretty print config at the start of the run using Rich library
print_config: True
# disable python warnings if they annoy you
ignore_warnings: True
# set False to skip model training
train: True
# evaluate on test set, using best model weights achieved during training
# lightning chooses best weights based on the metric specified in checkpoint callback
test: True
# seed for random number generators in pytorch, numpy and python.random
seed: 42
# default name for the experiment, determines logging folder path
# (you can overwrite this name in experiment configs)
name: "default" |