PyImageSearch Tutorial on JAX Part 1 #14592
Answered
by
jakevdp
ritwikraha
asked this question in
Show and tell
-
The first part of a tutorial series authored by Aritra Roy Gosthipaty and Ritwik Raha on JAX was published at PyImageSearch. This covers:
We look forward to constructive feedback from the community 🤗 |
Beta Was this translation helpful? Give feedback.
Answered by
jakevdp
Feb 21, 2023
Replies: 1 comment 2 replies
-
This looks great! A couple comments on a read-through of the first section:
I hope that's helpful – excited to see other sections as |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ritwikraha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This looks great! A couple comments on a read-through of the first section:
pip install jax
won't work by itself; you also need to install a backend-specificjaxlib
. See https://github.com/google/jax#installation for more infoDeviceArray
which was removed in v0.4.1. (see https://jax.readthedocs.io/en/latest/jax_array_migration.html#jax-array-migration). You might check that the JAX version used in your code snippets matches the …