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

noop.cc - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 213276d57447c6ecae2d1917c20902fbe625ed2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// This is a function which does nothing with examples.  Used when VW is used as a compressor.

#include "example.h"
#include "parser.h"
#include "gd.h"

void start_noop()
{
  example* ec = NULL;
  
  while ( !parser_done()){
    ec = get_example(0);
    if (ec != NULL)
      finish_example(ec);
  }
}

void end_noop()
{
}