-
Notifications
You must be signed in to change notification settings - Fork 137
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
Question: Compatibility Issues With Jax and TensorFlow #240
Comments
The issue is caused by the latest jax update (0.4.29). Jax and jaxlib 0.4.29 requires ml-dtypes 0.4.0, but tensorflow does 0.3.2, as you pointed out. |
For posterity and so people can find this via search. The solution by @YoshitakaMo (
and
and
Full error below:
|
This worked! Thank you! |
Hi! I am having what I believe is the same issue (error traceback below), even though I installed localcolabfold using the most recent
|
This means that your PC couldn't detect a GPU. Probably there is an error around the installation of CUDA drivers. |
@YoshitakaMo thank you for maintaining For posterity / for people encountering similar issue in the future: When I was encountering the problem in my above question, from within my Docker container |
I am installing colabfold on my Linux. After updating with ./update_linux.sh, I have incompatibilities between Jax's required ml-dtypes (which requires 0.4.0) and tensorflow's required ml-dtypes (which requires 0.3.2).
If I prioritize Jax by running pip install --upgrade "jax[cuda12]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html after running ./update_linux.sh, everything seems to work, but I am not sure if I am losing tensorflow in the run.
Has anyone had similar issues?
The text was updated successfully, but these errors were encountered: