Open DiamondGlassDrill opened 11 months ago
load_gs_cameras with open(gs_output_path + 'cameras.json') as f: FileNotFoundError: [Errno 2] No such file or directory: './outputcameras.json
python train.py -s ./data/playroom -c ./output -r sdf
cameras.json is in the output path. But I cannot find ./outputcameras.json as well.
try:
with open(gs_output_path + '/cameras.json') as f:
@cubantonystark solved it
load_gs_cameras with open(gs_output_path + 'cameras.json') as f: FileNotFoundError: [Errno 2] No such file or directory: './outputcameras.json
python train.py -s ./data/playroom -c ./output -r sdf
cameras.json is in the output path. But I cannot find ./outputcameras.json as well.