ferrotorch
Top-level re-export crate for the ferrotorch deep learning framework.
What it provides
This is the umbrella crate that re-exports the most commonly used types from:
- ferrotorch-core -- Tensor, autograd, differentiable ops, quantization
- ferrotorch-nn -- Module trait, layers, losses, activations
- ferrotorch-optim -- Optimizers and learning rate schedulers
- ferrotorch-data -- Dataset, DataLoader, samplers, transforms
- ferrotorch-vision -- Vision model architectures, datasets, image I/O
Quick start
use *;
let a = scalar?.requires_grad_;
let b = scalar?.requires_grad_;
let c = ?;
c.backward?;
println!; // tensor(3.)
Part of ferrotorch
This is the top-level crate of the ferrotorch workspace. See the workspace README for full documentation.
License
MIT OR Apache-2.0