SOLVED: For file path it has to be /home/$USER and not ~
Hi,
I'm running roslaunch bonnet_run bonnet_run.launch in the provided docker.
I've downloaded the city_512 pretrained model and used cnn_freeze.py to save everything in ~/log
However I'm getting the error Unable to create network. Invalid yaml file ~/log/train.yaml
It seems like the line _cfg_train = YAML::LoadFile(path + "/train.yaml"); in bonnet_core, bonnet.cpp is failing for some reason.
My configs are:
cnn_cfg.yaml
model_path: "~/log"
device: "/gpu:0"
verbose: true
backend: "tf" # tf (tensorflow, cpu or gpu mode) or trt (TensorRT nvidia gpu)
SOLVED: For file path it has to be
/home/$USER
and not~
Hi,
I'm running
roslaunch bonnet_run bonnet_run.launch
in the provided docker. I've downloaded the city_512 pretrained model and used cnn_freeze.py to save everything in ~/log However I'm getting the errorUnable to create network. Invalid yaml file ~/log/train.yaml
It seems like the line_cfg_train = YAML::LoadFile(path + "/train.yaml");
in bonnet_core, bonnet.cpp is failing for some reason.My configs are: cnn_cfg.yaml
topic_cfg.yaml
ERROR:
Thanks for your help.