hc99's picture
Add files using upload-large-folder tool
ff88fc5 verified
raw
history blame
357 Bytes
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
import logging
import sys
from omegaconf import DictConfig
import hydra
log = logging.getLogger(__name__)
@hydra.main(config_path="conf", config_name="config")
def experiment(cfg: DictConfig) -> None:
print(cfg.pretty())
if __name__ == "__main__":
sys.exit(experiment())