autograd 0.9.0

Tensors and differentiable operations in Rust
Documentation
[package]
name = "autograd"
version = "0.9.0"
authors = ["raskr <janne.dc.ib.sa@gmail.com>"]

repository = "https://github.com/raskr/rust-autograd"
keywords = ["numerics", "machine-learning", "ndarray", "multidimensional", "neural-network"]
license-file = "LICENSE"
readme = "README.md"
description = "Tensors and differentiable operations in Rust"
documentation = "https://docs.rs/autograd/"

[dependencies]
rand = "0.3.15"
ndarray = { version = "0.10.11" }
glob = "0.2"
rayon = "1.0"
libc = "0.2"
matrixmultiply = "0.1.14"
intel-mkl-src = { version="0.2.5", optional = true, default-features = true }
num-traits = "0.2"
num = "0.2"

[features]
mkl = ["intel-mkl-src"]

[lib]
name = "autograd"
path = "src/lib.rs"

[[example]]
name = "mlp_mnist"
path = "examples/mlp_mnist.rs"

[[example]]
name = "lstm_lm"
path = "examples/lstm_lm.rs"

[[example]]
name = "cnn_mnist"
path = "examples/cnn_mnist.rs"