hc99's picture
Add files using upload-large-folder tool
ff88fc5 verified
raw
history blame
277 Bytes
# 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()