1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! Minimal classification example
//!
//! This example demonstrates the minimal steps required to run a model
//! comparison using the `ClassificationModel` API. It loads a small classification
//! fixture, builds default classification settings, trains all configured
//! algorithms using cross-validation.
//!
//! If your features are non-negative integer counts you can opt into
//! Multinomial Naive Bayes with
//! `ClassificationSettings::default().with_multinomial_nb_settings(...)`.
//!
//! Run with:
//!
//! ```bash
//! cargo run --example minimal_classification
//! ```
use ClassificationModel;
use ClassificationSettings;
use classification_testing_data;