File size: 277 Bytes
ff88fc5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
from omegaconf import DictConfig
import hydra
@hydra.main(config_path="conf", config_name="simple")
def my_app(cfg: DictConfig) -> None:
print(cfg.pretty())
if __name__ == "__main__":
my_app()
|