Fix
+ `easycore.common.config.CfgNode` support python specified tag
Now, you can execute python code in yaml config file.
For example, specify code in your yaml file:
yaml
scale: !!python/object/apply:eval [ '[2 * 0, 2 * (1 / 3), 2 * (2 / 3)]' ]
And load it in python:
python
cfg = CfgNode.open('example.yaml')
assert cfg.scale == [2 * 0, 2 * (1 / 3), 2 * (2 / 3)]