Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

config.yaml 1.4 KB

You have to be logged in to leave a comment. Sign In
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
  1. # @package _global_
  2. # specify here default training configuration
  3. defaults:
  4. - _self_
  5. - trainer: default.yaml
  6. - model: default.yaml
  7. - datamodule: deadtrees_combo_dataset_multiclass_rgbn.yaml
  8. - callbacks: default.yaml
  9. - logger: wandb.yaml
  10. - mode: default.yaml
  11. - experiment: null
  12. - hparams_search: null
  13. # optional local config
  14. - optional local: default.yaml
  15. # enable color logging
  16. - override hydra/hydra_logging: colorlog
  17. - override hydra/job_logging: colorlog
  18. # path to original working directory
  19. # hydra hijacks working directory by changing it to the current log directory,
  20. # so it's useful to have this path as a special variable
  21. # learn more here: https://hydra.cc/docs/next/tutorials/basic/running_your_app/working_directory
  22. work_dir: ${hydra:runtime.cwd}
  23. # path to folder with data
  24. data_dir: ${work_dir}/data/
  25. # pretty print config at the start of the run using Rich library
  26. print_config: True
  27. # disable python warnings if they annoy you
  28. ignore_warnings: True
  29. # evaluate on test set, using best model weights achieved during training
  30. # lightning chooses best weights based on metric specified in checkpoint callback
  31. test_after_training: True
  32. # seed for random number generators in pytorch, numpy and python.random
  33. seed: null
  34. # name of the run is accessed by loggers
  35. # should be used along with experiment mode
  36. name: null
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...