rust-autograd
Tensors and differentiable operations (like TensorFlow) in Rust
File Explorer
Download Latest Version (.zip)- rust.yml
- cnn_mnist.rs
- download_mnist.sh
- lstm_lm.rs
- mlp_mnist.rs
- mnist_data.rs
- sine.rs
- adagrad.rs
- adam.rs
- mod.rs
- momentum_sgd.rs
- sgd.rs
- conv2d.rs
- conv2d_transpose.rs
- max_pool2d.rs
- mod.rs
- adagrad.rs
- adam.rs
- mod.rs
- sgd.rs
- activation_ops.rs
- array_ops.rs
- basic_source_ops.rs
- binary_ops.rs
- blas_ffi.rs
- const_gen_ops.rs
- dot_ops.rs
- gradient_ops.rs
- graph_ops.rs
- higher_order_ops.rs
- hook_ops.rs
- math_ops.rs
- mod.rs
- random_ops.rs
- reduction_ops.rs
- xent_ops.rs
- evaluation.rs
- gradient.rs
- graph.rs
- hooks.rs
- lib.rs
- ndarray_ext.rs
- op.rs
- prelude.rs
- tensor.rs
- test_helper.rs
- variable.rs
- lib.rs
- test_array_gen.rs
- test_binary_ops_eval.rs
- test_binary_ops_grad.rs
- test_core.rs
- test_optimizers.rs
- test_tensor_ops_eval.rs
- test_tensor_ops_grad.rs
- .gitignore
- Cargo.toml
- CHANGELOG.md
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/raskr/rust-autograd
Downloads the entire project code from GitHub to your computer.
cd rust-autograd
Moves into the project folder you just downloaded.
2. Rust
Medium RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo build --release
Compiles the Rust project.
cargo run
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
