Open kurtjcu opened 3 years ago
"pip install jax==0.2.20" may solve your problem
This error seems related to a version mismatch between jax and flax.
"pip install jax==0.2.20" may solve your problem
Thx! Installing jax==0.2.20 successfully resolves the flax.errors.InvalidRngError
.
Sadly, it now causes segmentation fault raised by line 330 of train.py
. I'm running on a single GPU with 47GB memory and I've tried setting batch_size = 64
, NerfModel.num_coarse_samples = 16
, NerfModel.num_fine_samples = 16
in configs/test_local.gin
and the segfault still happens, so I suppose it shouldn't be an issue with insufficient memory?
I think that jaxlib version may cause the segfault. I suffered same issue.
"pip install jaxlib==0.1.71+cuda111 -f https://storage.googleapis.com/jax-releases/jax_releases.html" may solve your problem
I think that jaxlib version may cause the segfault. I suffered same issue.
"pip install jaxlib==0.1.71+cuda111 -f https://storage.googleapis.com/jax-releases/jax_releases.html" may solve your problem
Thx a lot! The issue has been resolved.
@ChikaYan @SuwoongHeo @taoranyi after training did you get points.npy ? Could you give any hints how to get it?
Hi, Thanks for the code. :) I have been unable to run the example code due to the following error.
installation instructions followed except for "jaxlib==0.1.71+cuda111" being changed to "jaxlib==0.1.71" to allow installation (followed by jax installation from github). Dataset has been previously trained with Nerfies successfully.