openml 0.1.2

A rust interface to [OpenML](http://openml.org/).
Documentation
1
2
3
4
5
//! Implementation of simple baseline models, used for testing and demonstration.

mod naive_bayes_classifier;

pub use self::naive_bayes_classifier::NaiveBayesClassifier;