-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Incompatible jax or jaxlib version in tools/inference/inference_pipeline.ipynb #330
Comments
I got the following error with jax.
|
|
@saeyrjac565 : Looks like orbax and chex need latest jax. Do you need this for running inference using dalle-mini ? Also, I have only single GPU with 12GB RAM, so i can't leverage GPU for inference. So, I did pure CPU version. |
Maybe just need to pin orbax and chex to older versions as well? |
I believe @fang2020shu has resolved this issue on their fork! https://github.com/fang2020shu/dalle-mini |
There was an issue with orbax so I pinned it. This should resolve this issue. |
In the 3rd code block of the inference pipeline notebook, it has this error
RuntimeError Traceback (most recent call last)
in <cell line: 1>()
----> 1 import jax
2 import jax.numpy as jnp
3
4 # check how many devices are available
5 jax.local_device_count()
4 frames
/usr/local/lib/python3.10/dist-packages/jax/_src/lib/init.py in check_jaxlib_version(jax_version, jaxlib_version, minimum_jaxlib_version)
67 f'incompatible with jax version {jax_version}. Please '
68 'update your jax and/or jaxlib packages.')
---> 69 raise RuntimeError(msg)
70
71 return _jaxlib_version
RuntimeError: jaxlib version 0.4.7 is newer than and incompatible with jax version 0.3.25. Please update your jax and/or jaxlib packages.
The text was updated successfully, but these errors were encountered: