dl-from-scratch / utils /config.py
yusiwen's picture
infra: add config system, TensorBoard logging, and reproducibility seed
5c796a5 unverified
Raw
History Blame Contribute Delete
215 Bytes
import yaml
def load_config(path):
with open(path) as f:
return yaml.safe_load(f)
def save_config(config, path):
with open(path, "w") as f:
yaml.dump(config, f, default_flow_style=False)