https://github.com/google/jax
Raw File
Tip revision: 805ea11001f0f4ad289d180590ac19f28213af96 authored by Peter Hawkins on 20 December 2022, 14:13:12 UTC
[XLA:Python] Drop support for classic HLO in the Python bindings.
Tip revision: 805ea11
jax.example_libraries.rst
jax.example_libraries package
=============================

JAX provides some small, experimental libraries for machine learning. These
libraries are in part about providing tools and in part about serving as
examples for how to build such libraries using JAX. Each one is only <300 source
lines of code, so take a look inside and adapt them as you need!

.. note::
  Each mini-library is meant to be an *inspiration*, but not a prescription.

  To serve that purpose, it is best to keep their code samples minimal; so we
  generally **will not merge PRs** adding new features. Instead, please send your
  lovely pull requests and design ideas to more fully-featured libraries like
  `Haiku`_ or `Flax`_.


.. toctree::
    :maxdepth: 1

    jax.example_libraries.optimizers
    jax.example_libraries.stax

.. automodule:: jax.example_libraries


.. _Haiku: https://github.com/deepmind/dm-haiku
.. _Flax: https://github.com/google/flax
back to top