-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation Issue from flax vs jax compatibility #192
Comments
Same issue here |
Pleas help to solve this issue! Thank you |
This worked for me using python 3.6: |
I got a working Conda environment with Python 3.9, Ubuntu 20.04, CUDA Toolkit 11.8 and cuDNN 8.6 by specifying the requirement versions in jax3d/requirements.txt as:
Then,
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Following the install instructions on the main README page caused an error seemingly due to incompatibilities between jax and flax.
Following install instructions gave jax version 0.4.16 and flax version 0.5.3
Running the example training code gave the following error
ImportError: cannot import name 'ShapedArray' from 'jax'
I have not used jax or flax before but from doing some digging this seems to be because jax hasn't provided ShapedArray since version 0.4.14.
Upgrading flax to version 0.7.0 got past this problem but opened up a new issue of
flax.optim
no longer being a part of the flax library.What is the recommended solution to this problem and can code/documentation be updated to reflect this compatibility issue?
The text was updated successfully, but these errors were encountered: