infofile = os.path.join(project_root, "raw-datasets/info.yml")
logger.info("Read '%s'...", infofile)
with open(infofile) as ymlfile:
datasets = yaml.safe_load(ymlfile)
for dataset in datasets:
local_path_file = os.path.join(project_root, dataset["online_path"])
infofile --> /home/angsuesser/hwr-experiments/raw-datasets/info.yml : existiert!
Im yaml-file ist allerdings kein Eintrag für "online_path" oder "MD5" dadurch --> Bauchlandung
$ hwrt --version hwrt, version 0.2.1
but: hwrt download stops, because in download.py
infofile = os.path.join(project_root, "raw-datasets/info.yml") logger.info("Read '%s'...", infofile) with open(infofile) as ymlfile: datasets = yaml.safe_load(ymlfile) for dataset in datasets: local_path_file = os.path.join(project_root, dataset["online_path"])
infofile --> /home/angsuesser/hwr-experiments/raw-datasets/info.yml : existiert! Im yaml-file ist allerdings kein Eintrag für "online_path" oder "MD5" dadurch --> Bauchlandung