rust_physics_engine 0.2.0

A zero-dependency Rust library for physics, mathematics and engineering computation — 6,365 public functions across 71 modules
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Learning algorithms, written to be read rather than to be fast.
//!
//! Every method here has a closed-form or exactly-checkable property
//! attached to it, because that is what makes a learning algorithm
//! testable at all. A network that trains to a plausible loss is not
//! evidence of anything -- gradient descent will happily reduce the loss
//! of a model whose gradients are wrong, just more slowly. What settles
//! it is comparing the analytic gradient against a finite difference,
//! comparing a linear model fitted by descent against the normal
//! equations, or checking that a clustering agrees with itself under a
//! relabelling.

pub mod cluster;
pub mod gp;
pub mod nn;
pub mod tree;