| # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved | |
| from omegaconf import DictConfig | |
| import hydra | |
| def my_app(cfg: DictConfig) -> None: | |
| print(cfg.pretty()) | |
| if __name__ == "__main__": | |
| my_app() | |
| # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved | |
| from omegaconf import DictConfig | |
| import hydra | |
| def my_app(cfg: DictConfig) -> None: | |
| print(cfg.pretty()) | |
| if __name__ == "__main__": | |
| my_app() | |