Giter Site home page Giter Site logo

Comments (4)

sjmielke avatar sjmielke commented on May 21, 2024

As it's not documented I'm not sure if this is a bug or (not) working as intended:

jnp.exp(0)  # 1.0
jax.jit(jnp.exp)(0)  # 1.0
hk.jit(jnp.exp)(0)  # IndexError: deque index out of range

Lmk if I should delete this comment and report it instead :)

from dm-haiku.

ibab avatar ibab commented on May 21, 2024

@sjmielke: Thanks for finding that! It fails because the hk.* transforms assume that they run inside of hk.transform right now, but there's no reason why they shouldn't work outside. I have a fix for this in #17.

from dm-haiku.

trevorcai avatar trevorcai commented on May 21, 2024

@sjmielke We anticipate that the situations in which you'd want to use hk.jit or hk.grad are limited! They exist as power user workarounds for a particular use cases. I regard them as much more alpha than the rest of Haiku.

Haiku presents a function, hk.transform, which converts impure, object-oriented code with magic functions like hk.get_parameter into JAX transform friendly pure functions.
However, sometimes we want to use JAX transformations inside of a monolithic chunk of Haiku code.
hk.{grad,jit,remat} are exposed for these cases; in all other situations, prefer the JAX equivalent.

For hk.jit:

  • We recommend against jitting functions inside of hk.transform that create or use parameters.
    • If you can jax.jit the entire hk.transform(my_fn), do that!
    • If you can't, prefer to extract pure functions representing the expensive portions of your computation and JIT those.
    • In the rare case in which neither of these are possible (e.g. data-dependent control flow that is hard to express with JAX XLA control flow tools, and is hard to break down from a code perspective), then we provide hk.jit as a workaround.

For hk.grad:

  • If your model involves taking derivatives inside of your neural network, use hk.grad.

TODO: Add documentation for this stuff. Contributions welcome!

from dm-haiku.

trevorcai avatar trevorcai commented on May 21, 2024

We've made a start here with these two:
https://dm-haiku.readthedocs.io/en/latest/transforms.html
https://dm-haiku.readthedocs.io/en/latest/api.html#jax-transforms

Closing for now.

from dm-haiku.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.