Automatic commit
[svrt.git] / vision_test.cc
index 94591f1..3a445e7 100644 (file)
@@ -1,4 +1,4 @@
-c/*
+/*
  *  svrt is the ``Synthetic Visual Reasoning Test'', an image
  *  generator for evaluating classification performance of machine
  *  learning systems, humans and primates.
@@ -188,13 +188,11 @@ int main(int argc, char **argv) {
   for(int c = 1; c < new_argc; c++) {
 
     if(strcmp(new_argv[c], "randomize-train") == 0) {
+      cout << "Generating the training set." << endl;
       for(int n = 0; n < global.nb_train_samples; n++) {
-        if(n > 0 && n%100 == 0) cout << "*"; cout.flush();
-        // cout << "n = " << n << endl;
         train_labels[n] = int(drand48() * 2);
         generator->generate(train_labels[n], &train_samples[n]);
       }
-      cout << endl;
     }
 
     else if(strcmp(new_argv[c], "adaboost") == 0) {