-
Notifications
You must be signed in to change notification settings - Fork 17
/
run_double_irreducible.py
43 lines (34 loc) · 1.13 KB
/
run_double_irreducible.py
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
import hydra
from omegaconf import DictConfig
@hydra.main(config_path="configs/", config_name="double_irreducible_training.yaml")
def main(config: DictConfig):
# Imports should be nested inside @hydra.main to optimize tab completion
# Read more here: https://github.com/facebookresearch/hydra/issues/934
from src.utils import utils
# A couple of optional utilities:
# - disabling python warnings
# - easier access to debug mode
# - forcing debug friendly configuration
# You can safely get rid of this line if you don't want those
# utils.extras(config)
# Pretty print config using Rich library
if config.get("print_config"):
utils.print_config(
config,
fields=(
"trainer",
"model",
"datamodule",
"callbacks",
"logger",
"seed",
"optimizer",
"scheduler",
),
resolve=True,
)
# Train model
from src.train_double_irreducible import train
return train(config)
if __name__ == "__main__":
main()