Commit 52177972 authored by ProtD's avatar ProtD Committed by Guolin Ke
Browse files

typo fix (#265)

parent da59fd22
...@@ -35,7 +35,7 @@ public: ...@@ -35,7 +35,7 @@ public:
++cnt_negative; ++cnt_negative;
} }
} }
Log::Info("Number of postive: %d, number of negative: %d", cnt_positive, cnt_negative); Log::Info("Number of positive: %d, number of negative: %d", cnt_positive, cnt_negative);
// cannot continue if all sample are same class // cannot continue if all sample are same class
if (cnt_positive == 0 || cnt_negative == 0) { if (cnt_positive == 0 || cnt_negative == 0) {
Log::Fatal("Training data only contains one class"); Log::Fatal("Training data only contains one class");
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment