Turi Create  4.0
classifier_evaluations.hpp
1 #ifndef TURI_SUPERVISED_LEARNING_CLASSIFIER_EVALUATION_H_
2 #define TURI_SUPERVISED_LEARNING_CLASSIFIER_EVALUATION_H_
3 
4 #include <toolkits/supervised_learning/supervised_learning.hpp>
5 #include <toolkits/supervised_learning/boosted_trees.hpp>
6 
7 
8 namespace turi {
9 namespace supervised {
10 
11 gl_sframe classifier_report_by_class(
12  gl_sframe input, const std::string& actual,
13  const std::string& predicted);
14 
15 gl_sframe confusion_matrix(
16  gl_sframe input, const std::string& actual,
17  const std::string& predicted);
18 
19 }}
20 
21 
22 
23 
24 #endif