An open API service indexing awesome lists of open source software.

https://github.com/opixelum/atamai

Lightweight ML library in Rust
https://github.com/opixelum/atamai

ai artificial-intelligence deep-learning machine-learning neural-network rust

Last synced: 5 months ago
JSON representation

Lightweight ML library in Rust

Awesome Lists containing this project

README

          

# Atamai

Lightweight ML library in Rust.

## Activations

- Linear (alias: Identity);
- ReLU;
- Sigmoid (alias: Logistic);
- Softmax;
- Tanh.

## Losses

- Binary Cross-Entropy (BCE) (alias: Log Loss);
- Categorical Cross-Entropy (CCE) (alias: Softmax Loss);
- Hinge Loss;
- Mean Absolute Error (MAE) (alias: L1);
- Mean Squared Error (MSE) (alias: L2);
- Huber Loss (Smooth Mean Absolute Error (SMAE)).