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
// Task : Main file for executing the different deeprust units
// Author : Vigneshwer
// Date : 18th FEB 2016
// Version : 1.0
//! # DeepRust features:
//! The library contains the following functions:
//! * The reg module contains functions to perform regularization operations
//! * The metrics module contains functions to generate the confusion matrix
//! * we use the confusion matrix macro to feed value into metric module functions
/// Confusionmatrix takes in four fields which are expresions which is converted into the confusion_matrix struct of the metrics module
///
/// # Example:
/// ```ignore
/// ~~~~
/// #[macro_use(Confusionmatrix)]
/// extern crate deeprust;
/// fn main() {
/// let sample = Confusionmatrix!(100,50,10,5);
/// }
/// ~~~~