-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathrun.py
More file actions
39 lines (28 loc) · 1.1 KB
/
run.py
File metadata and controls
39 lines (28 loc) · 1.1 KB
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
import dotenv
import hydra
from omegaconf import DictConfig, OmegaConf
from trident.utils.logging import get_logger
# load environment variables from `.env` file if it exists
# recursively searches for `.env` in all folders starting from work dir
dotenv.load_dotenv(override=True)
log = get_logger(__name__)
@hydra.main(version_base="1.2", config_path="configs/", config_name="config.yaml")
def main(cfg: DictConfig):
# Imports should be nested inside @hydra.main to optimize tab completion
# Read more here: https://github.com/facebookresearch/hydra/issues/934
from src.train import train
from src.utils.runner import extras, print_config
# 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
extras(cfg)
# Init lightning datamodule
# Pretty print config using Rich library
if cfg.get("print_config"):
print_config(cfg, resolve=True)
# Train model
return train(cfg)
if __name__ == "__main__":
main()