mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
628 B
19 lines
628 B
3 years ago
|
#!/usr/bin/env python
|
||
|
# -*- encoding: utf-8 -*-
|
||
|
|
||
|
from pathlib import Path
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from colossalai.context.config import Config
|
||
|
|
||
|
|
||
|
def test_load_config():
|
||
|
filename = Path(__file__).parent.joinpath('sample_config.py')
|
||
|
config = Config.from_file(filename)
|
||
|
|
||
|
assert config.train_data, 'cannot access train data as attribute'
|
||
|
assert config.train_data.dataset, 'cannot access grandchild attribute'
|
||
|
assert isinstance(config.train_data.dataset.transform_pipeline[0], dict), \
|
||
|
f'expected attribute transform_pipeline elements to be a dict, but found {type(config.train_data.dataset.transform_pipeline)}'
|