# RAI

[](https://docs.rs/rai)
[](https://crates.io/crates/rai)
[](https://discord.gg/J7X8rNZeMC)
ML framework with ergonomic APIs in Rust. Lazy computation and composable transformations like JAX.
---
## Installation
```sh
cargo add rai
```
## Code snippets
### Function transformations (jvp, vjp, grad, value_and_grad)
```rust
use rai::{grad, Cpu, Tensor, F32};
fn f(x: &Tensor) -> Tensor {
x.sin()
}
fn main() {
let grad_fn = grad(grad(f));
let x = &Tensor::ones([1], F32, &Cpu);
let grad = grad_fn(x);
println!("{}", grad.dot_graph());
println!("{}", grad);
}
```
### NN Modules, Optimizer and loss functions
```rust
fn loss_fn<M: TrainableModule<Input = Tensor, Output = Tensor>>(
model: &M,
input: &Tensor,
labels: &Tensor,
) -> (Tensor, Aux<Tensor>) {
let logits = model.forward(input);
let loss = softmax_cross_entropy(&logits, labels).mean(..);
(loss, Aux(logits))
}
fn train_step<M: TrainableModule<Input = Tensor, Output = Tensor>, O: Optimizer>(
optimizer: &mut O,
model: &M,
input: &Tensor,
labels: &Tensor,
) {
let vg_fn = value_and_grad(loss_fn);
let ((_loss, Aux(_logits)), (grads, ..)) = vg_fn((model, input, labels));
let mut params = optimizer.step(&grads);
eval(¶ms);
model.update_params(&mut params);
}
```
## Examples
- [linear_regression](https://github.com/cksac/rai/blob/main/examples/linear_regression/src/main.rs)
- `cargo run --bin linear_regression --release`
- [mnist](https://github.com/cksac/rai/blob/main/examples/mnist/src/main.rs)
- `cargo run --bin mnist --release`
- `cargo run --bin mnist --release --features=cuda`
- [mnist-cnn](https://github.com/cksac/rai/blob/main/examples/mnist-cnn/src/main.rs)
- `cargo run --bin mnist-cnn --release`
- `cargo run --bin mnist-cnn --release --features=cuda`
- [phi2](https://github.com/cksac/rai/blob/main/examples/phi2/src/main.rs)
- `cargo run --bin phi2 --release`
- `cargo run --bin phi2 --release --features=cuda`
- [phi3](https://github.com/cksac/rai/blob/main/examples/phi3/src/main.rs)
- `cargo run --bin phi3 --release`
- `cargo run --bin phi3 --release --features=cuda`
- [qwen2](https://github.com/cksac/rai/blob/main/examples/qwen2/src/main.rs)
- `cargo run --bin qwen2 --release`
- `cargo run --bin qwen2 --release --features=cuda`
- [gemma](https://github.com/cksac/rai/blob/main/examples/gemma/src/main.rs)
- accept license agreement in https://huggingface.co/google/gemma-2b
- `pip install huggingface_hub`
- login to hf `huggingface-cli login`
- `cargo run --bin gemma --release`
- `cargo run --bin gemma --release --features=cuda`
- [vit](https://github.com/cksac/rai/blob/main/examples/vit/src/main.rs)
- `cargo run --bin vit --release`
- `cargo run --bin vit --release --features=cuda`
## LICENSE
This project is licensed under either of
- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
- MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)
at your option.