Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boydjohnson/ml-functions
Some numpy + scipy style machine learning operations for ndarray
https://github.com/boydjohnson/ml-functions
machinelearning rust rust-lang
Last synced: 11 days ago
JSON representation
Some numpy + scipy style machine learning operations for ndarray
- Host: GitHub
- URL: https://github.com/boydjohnson/ml-functions
- Owner: boydjohnson
- License: apache-2.0
- Created: 2022-06-04T21:49:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-06T22:55:01.000Z (over 2 years ago)
- Last Synced: 2024-04-03T01:52:57.224Z (8 months ago)
- Topics: machinelearning, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ml-functions
These are basic machine learning operations in the style of numpy and scipy
that are useful for preprocessing and postprocessing machine learning data.These functions operate on `ndarray` ArrayBase data structures.
## Operations
- `sigmoid`
- `softmax` along an axis
- `exp`
- `max` along an axis
- `argmax` along an axis
- `argsort` along an axis## Usage
```
[dependencies]
ml-functions = { git = "https://github.com/boydjohnson/ml-functions" }
```