simple ml library written in rust i made for fun/learning, heavily inspired by PyTorch's design
Usage example in ./examples/train_llm/main.rs:
cargo run -r --example train_llm- basic tensor ops (naive CPU implementations)
- autograd/backprop
- really slow, tiny transformer can learn a toy distribution
- change tensor storage to use strides/support views
- model serialization (saving/loading)
- easy inference code for autoregressive generation
- optimize tensor ops
- gpu support?? (https://github.com/Rust-GPU/Rust-CUDA)
