에서 작동하지 않습니다 이다YAML 1.2 지시어는 나는 다음과 같은 다중 파일 YAML 설정 파일을로드하기 위해 노력하고있어 안전하지 않은 모드
ruamel.yaml.parser.ParserError: found incompatible YAML document
in "../MAML_tensorflow/experiment.yml", line 1, column 1
,617,451 :
실행
from ruamel.yaml import YAML
yaml = YAML(typ='unsafe')
configs = yaml.load_all(Path(Experiment.config_file))
for config in configs:
print(config)
, 그것은 다음과 같은 오류를 범
load_all
을 모듈에서 직접 가져온 경우 파일이 작동합니다. 이 예상되는 동작입니까?
구현 플래그를 pure
으로 설정하면 올바른 구문 분석 결과가 제공되므로 버그 일 가능성이 큽니다.
from ruamel.yaml import YAML
yaml = YAML(typ='unsafe', pure=True)
configs = yaml.load_all(Path(Experiment.config_file))
for config in configs:
print(config)
이 켜지지 않고이 아아,이다
from ruamel.yaml import YAML
yaml = YAML(typ='unsafe')
configs = yaml.load_all(Path(Experiment.config_file))
for config in configs:
print(config)