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@humpty.(none)>2011-01-24 17:22:09 +0300
committerJohn Langford <jl@humpty.(none)>2011-01-24 17:22:09 +0300
commita3353542624f9babd34a46632067f1a97ae50c68 (patch)
treede07a0751157ebc5604cf54cd8f74bbbe7d5096a /parse_regressor.cc
parent9e94fca8fd0930bb217fd27a72822170baadeb72 (diff)
removed debug print Ariel pointed out
Diffstat (limited to 'parse_regressor.cc')
-rw-r--r--parse_regressor.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse_regressor.cc b/parse_regressor.cc
index 035b608b..bbeaba9d 100644
--- a/parse_regressor.cc
+++ b/parse_regressor.cc
@@ -25,7 +25,6 @@ void initialize_regressor(regressor &r)
r.weight_vectors = (weight **)malloc(num_threads * sizeof(weight*));
for (size_t i = 0; i < num_threads; i++)
{
- cout << "global.stride = " << global.stride << endl;
r.weight_vectors[i] = (weight *)calloc(global.stride*length/num_threads, sizeof(weight));
if (r.weight_vectors[i] == NULL)
{