Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@hunch.net>2014-07-11 21:42:43 +0400
committerJohn Langford <jl@hunch.net>2014-07-11 21:42:43 +0400
commit340dff88ab13f0de1cd47d4aa421fe9265c80952 (patch)
tree49b5de966c7c5569eceea2a5e73dd3f61ef24dcf
parentb024f25ac8538c3562e082c3b39378d4d47ef5e4 (diff)
removed warning message
-rw-r--r--vowpalwabbit/stagewise_poly.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vowpalwabbit/stagewise_poly.cc b/vowpalwabbit/stagewise_poly.cc
index 6d521b25..9612a2d5 100644
--- a/vowpalwabbit/stagewise_poly.cc
+++ b/vowpalwabbit/stagewise_poly.cc
@@ -350,10 +350,10 @@ namespace StagewisePoly
if (poly.cur_depth < min_depths_get(poly, wid_cur) && poly.training) {
if (parent_get(poly, wid_cur)) {
//#ifdef DEBUG
- cout
+ /* cout
<< "FOUND A TRANSPLANT!!! moving [" << wid_cur
<< "] from depth " << (uint32_t) min_depths_get(poly, wid_cur)
- << " to depth " << poly.cur_depth << endl;
+ << " to depth " << poly.cur_depth << endl;*/
//#endif //DEBUG
parent_toggle(poly, wid_cur);
}