This commit is contained in:
Shital Shah 2020-04-25 21:03:22 -07:00
Родитель 33df398b51
Коммит 3847d25ce7
1 изменённых файлов: 0 добавлений и 30 удалений

Просмотреть файл

@ -1,30 +0,0 @@
import yaml
from archai.common.yaml_utils import resolve_all
s="""
common:
dataset:
name: 'd1'
classes: 3
cifar:
limit: -1
logging: True
autoaug:
dataset: '_copy: /nas/train/dataset'
logging: '_copy: /nas/logging'
nas:
train:
dataset:
_copy: '/common/dataset'
classes: 4
cifar:
workers: 0
logging: '_copy: /common/logging'
"""
d = yaml.safe_load(s)
print(d)
resolve_all(d)
print(yaml.dump(d))