Closed cjw531 closed 2 years ago
@cjw531 i also have the same problems as you. and I have to adjust batch size , but there are still problems about memory.
@cjw531 I also have the same problems as you. But the no_batch=True, so I can't change it.
it seems that you haven't download the light probes. you can download them in the author's project pages. And then set the 'test_envmap_dir' term in lr5e-3.ini
Hi, With your debugging help done in other issues, I was able to get up to the last step.
I have 3 questions about this last step:
If I use single 2080ti here (as you set
gpus='0'
), I am getting OOM allocation error so I assigned three 2080ti here. Is this an acceptable approach? Because you did not seem to allow allocating multi-gpus for calculating geometry buffers. Also, should I consider usingimh=256
instead of 512 to reduce memory usage? Error message as follows:What I initially did was copying the whole script (step 1, 2, and 3) of the final step, and running it with
$ bash ./script.sh
. However this causes the error saying that it cannot find theckpt-2
andckpt-10
files that should be pre-existed. So I separated three scripts, and was able to get up to the shape pre-training and joint optimization process. I hope my execution did not cause the below tensorflow warning regarding:I am getting the following error in the very last step and cannot complete your hotdog example ("Simultaneous Relighting and View Synthesis (testing)"):
It seems like
rgb_probes = tf.concat([x[:, None, :] for x in rgb_probes], axis=1)
this line of code causes the issue. Not sure how to debug this.Thank you in advance.