sxyu / pixel-nerf

PixelNeRF Official Repository

Home Page:https://alexyu.net/pixelnerf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pyhocon problem

chiyaohuang opened this issue · comments

Hi,

I met a pyhocon problem. when I try the eval ''python eval/gen_video.py -n sn64 --gpu_id 0 --split test -P '2' -D ~/disk/NMR_Dataset -S 0", it shows

pyparsing.exceptions.ParseException: Expected '}', found '=' (at char 759), (line:34, col:18)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "eval/gen_video.py", line 63, in
args, conf = util.args.parse_args(extra_args)
File "/home/yao/pixel-nerf/src/util/args.py", line 99, in parse_args
conf = ConfigFactory.parse_file(args.conf)

Does anyone know how to solve it?

I also face the same problem.

I reinstall the older version of pyhocon and solve the problem.

Try:
pip install --force-reinstall -v "pyhocon==0.3.55"

Thank you! I solve it.

commented

That solves the problem, thank you very much.