openml

Crates.ioopenml
lib.rsopenml
version0.1.2
sourcesrc
created_at2018-06-20 21:35:13.481255
updated_at2018-06-27 16:44:42.059497
descriptionA rust interface to [OpenML](http://openml.org/).
homepage
repositoryhttps://github.com/mbillingr/openml-rust
max_upload_size
id71008
size49,822
(mbillingr)

documentation

README

openml-rust

A rust interface to OpenML.

The aim of this crate is to give rust code access to Machine Learning data hosted by OpenML. Thus, Machine Learning algorithms developed in Rust can be easily applied to state-of-the-art data sets and their performance compared to existing implementations in a reproducable way.

Example

extern crate openml;

use openml::prelude::*;
use openml::{PredictiveAccuracy, SupervisedClassification};
use openml::baseline::NaiveBayesClassifier;

fn main() {
    // Load "Supervised Classification on iris" task (https://www.openml.org/t/59)
    let task = SupervisedClassification::from_openml(59).unwrap();

    println!("Task: {}", task.name());

    // run the task
    let result: PredictiveAccuracy<_> = task.run(|train, test| {
        // train classifier
        let nbc: NaiveBayesClassifier<u8> = train
            .map(|(x, y)| (x, y))
            .collect();

        // test classifier
        let y_out: Vec<_> = test
            .map(|x| nbc.predict(x))
            .collect();

        Box::new(y_out.into_iter())
    });

    println!("Classification Accuracy: {}", result.result());
}

Goals

  • get data sets

  • get tasks

  • get splits

  • task types

    • Supervised Classification
    • Supervised Regression
    • Learning Curve
    • Clustering
  • run tasks

    • [ ] Learner/Predictor trait for use with tasks
    • Task runner takes a closure for learning and prediction
    • Data type strategy:
      • a: burden the ML model with figuring out how to deal with dynamic types
      • b: cast everything to f64
      • c: make type casting part of the feature extraction pipeline
      • Generics allow type selection at compile time
  • make openml.org optional (manual construction of tasks)

Future Maybe-Goals

  • flow support
  • run support
  • full OpenML API support
  • authentication
  • more tasks
    • Supervised Datastream Classification
    • Machine Learning Challenge
    • Survival Analysis
    • Subgroup Discovery

Non-Goals

  • implementations of machine learning algorithms
Commit count: 50

cargo fmt