When I try to train the mobilenerf model, I find a problem about flax. When I following the guide to install all the lib and trying to run stage1.py, it will give an error module 'flax' has no attribute 'optim'for line 1476 state=flax.optim.Adam(**adam_kwargs).create(model_vars). I find out that flax I installed is version0.6.0, but an older version like 0.5.3 will be ok. So maybe the requirements should make a change?
Thanks :)
When I try to train the mobilenerf model, I find a problem about
flax
. When I following the guide to install all the lib and trying to runstage1.py
, it will give an errormodule 'flax' has no attribute 'optim'
for line 1476state=flax.optim.Adam(**adam_kwargs).create(model_vars)
. I find out that flax I installed is version0.6.0, but an older version like 0.5.3 will be ok. So maybe therequirements
should make a change? Thanks :)