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

https://github.com/emmeowzing/rx_algorithm

A fast (experimental) RX algorithm implementation in Python 3.9+
https://github.com/emmeowzing/rx_algorithm

algorithm image mahalanobis rx

Last synced: 3 months ago
JSON representation

A fast (experimental) RX algorithm implementation in Python 3.9+

Awesome Lists containing this project

README

          

# rx_algorithm

A fast (experimental) RX algorithm implementation in Python 3.9+ with overhead reduction based on entropy estimation via compression.

## Example usage

```python
from rx_algorithm import rx
from rx.utils import plot

X = rx(array)
plot(X, 'out.png')
```