Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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" }
```