axon icon indicating copy to clipboard operation
axon copied to clipboard

Nx-powered Neural Networks

Results 75 axon issues
Sort by recently updated
recently updated
newest added

With the support of `while` loops in `Nx` and progress towards streaming data to the device, we should consider an API which allows for fusing the training loop into a...

kind:feature
area:loop

This is important for deploying on mobile/embedded applications. Goal is to achieve feature parity with PyTorch: https://pytorch.org/docs/stable/quantization.html

kind:feature
area:loop

Currently, XLA's GPU `while` thunk actually runs the loop on the CPU and is inefficient for training RNNs. TensorFlow implements a [CuDNNRNN](https://www.tensorflow.org/api_docs/python/tf/raw_ops/CudnnRNN) op which takes advantage of specialized GPU RNN...

kind:feature
area:layers

On the high-level API, we can integrate named tensors by specifying the expected names on input: ```elixir Axon.input(batch: nil, channels: 3, height: 224, width: 224) ``` Then we'll need to...

kind:feature

Notebooks are an excellent teaching resource. Examples should be converted to: [Livebook's](https://github.com/elixir-nx/livebook) Live Markdown with accompanying explanations of the models demonstrated.

kind:documentation
kind:chore

Somewhat related to #21 PyTorch Lightning supports building custom loggers for integration with third-party logging tools (like TensorBoard). We should include a similar API so training can be monitored in...

kind:feature
area:training

Necessary for reproducible results. Requires https://github.com/elixir-nx/nx/issues/333

kind:feature
note:upstream