rocker 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ext/rocker/auc_info.h +1 -1
- data/lib/rocker.rb +1 -1
- metadata +2 -2
data/ext/rocker/auc_info.h
CHANGED
|
@@ -12,7 +12,7 @@ using std::ostringstream;
|
|
|
12
12
|
using std::string;
|
|
13
13
|
using std::ostream;
|
|
14
14
|
|
|
15
|
-
const string AUC_COLUMNS = "(experiment_id,
|
|
15
|
+
const string AUC_COLUMNS = "(experiment_id, \"column\", auc, true_positives, false_positives, true_negatives, false_negatives)";
|
|
16
16
|
|
|
17
17
|
class auc_info {
|
|
18
18
|
public:
|
data/lib/rocker.rb
CHANGED