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

noop.cc « vowpalwabbit - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b500d657e2fcd12abb8cf7375e39270406ea6908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
Copyright (c) by respective owners including Yahoo!, Microsoft, and
individual contributors. All rights reserved.  Released under a BSD (revised)
license as described in the file LICENSE.
 */
// This is a learner which does nothing with examples.  Used when VW is used as a compressor.

#include "reductions.h"

using namespace LEARNER;

namespace NOOP {
  learner* setup(vw& all)
  {
    return new learner();
  }
}