Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/d6y/oner_quantize

Qualization library based on 1R
https://github.com/d6y/oner_quantize

1r machine-learning oner quantization rule-based rust-lang

Last synced: about 1 month ago
JSON representation

Qualization library based on 1R

Awesome Lists containing this project

README

        

![Rust](https://github.com/d6y/oner_quantize/workflows/Rust/badge.svg)

# 1R quantization implementation in Rust

Quantization takes numeric data and turns it into a discrete set of intervals.

For example, given labelled data such:

| Value | Label |
|-------| ------- |
| 1 | true |
| 40 | true |
| 100 | false |
| 101 | false |

We might discover the intervals:

- less than 100 (true)
- 100 or more (false)

This is a reimplementation of the 1R quantization algorithm described in [Holte (1993)](https://link.springer.com/article/10.1023%2FA%3A1022631118932). It is a complement to .

# Documentation and examples

- [API reference and usage](https://docs.rs/oner_quantize/)
- An example application:

# License

Copyright 2020 Richard Dallaway

This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at .