CRFL
CRFL copied to clipboard
problem about setup
HI,when I finished build the environment and tried to run python main.py --params configs/mnist_params.yaml
, there is a problem showed
and I can't do anything furthermore, do you have any ideas to solve it?
You should remove the parser keyword 'description': parser.add_argument('--params')
It should work now.
Hi, thanks for replying.
when I removed the keyword description and continued, there's a new problem showed
is there anything I missed?
Hi, sorry for the late response.
Try this:
params_loaded = yaml.full_load(f)
instead of:
params_loaded = yaml.load(f)