PyImageSearch Tutorial on JAX Part 2 | Power tools of JAX #14698
Answered
by
jakevdp
ariG23498
asked this question in
Show and tell
-
The first part of the tutorial was shared in this discussion. The second part of the tutorial is up. We (Ritwik and I) cover the following: We look forward to constructive feedback from the community 🤗 |
Beta Was this translation helpful? Give feedback.
Answered by
jakevdp
Feb 27, 2023
Replies: 1 comment
-
Nice to see this tutorial progressing! A few comments:
Overall it looks great! Thanks for sharing |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ariG23498
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice to see this tutorial progressing! A few comments:
pip install jax
will not work in a fresh environment. The only reason it works in Colab is becausejaxlib
is already installed. You might wish to recommend something likepip install jax[cpu]
(this would be preferred over installingjaxlib
separately) or refer to the JAX installation guide.Stateless
example, you could do something like this:St…