You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, this is amazing work! So thank you for posting this code publicly.
I ran into a minor error when executing the code following your directions
File "main.py", line 67, in<module>
part_mesh.export(os.path.join(opts.save_path, f'recon_iter:{i}.obj'))
File "/home/ctralie/code/point2mesh/models/layers/mesh.py", line 344, inexport
self.main_mesh.export(file)
File "/home/ctralie/code/point2mesh/models/layers/mesh.py", line 225, inexport
export(file, vs, self.faces)
File "/home/ctralie/code/point2mesh/utils.py", line 73, inexport
with open(file, 'w+') as f:
OSError: [Errno 22] Invalid argument: './checkpoints/giraffe/recon_iter:100.obj'
I don't know how general this is, but on my machine, Python does not appear to like the ":" in the filename. Once I changed this to a "_" (e.g. "recon_iter_300.obj" instead of "recon_iter:300.obj") on line 67 of main.py, the code worked beautifully.
The text was updated successfully, but these errors were encountered:
First of all, this is amazing work! So thank you for posting this code publicly.
I ran into a minor error when executing the code following your directions
I don't know how general this is, but on my machine, Python does not appear to like the ":" in the filename. Once I changed this to a "_" (e.g. "recon_iter_300.obj" instead of "recon_iter:300.obj") on line 67 of main.py, the code worked beautifully.
The text was updated successfully, but these errors were encountered: