Ignore:
Timestamp:
Mar 1, 2006, 9:49:48 AM (17 years ago)
Author:
Markus Ringnér
Message:

Fixed bug in tScore and in MatrixLookup?. Added support for scoring inputs in SupervisedClassifier? and for using this in training and prediction in NCC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/classifier/SupervisedClassifier.cc

    r525 r526  
    66namespace classifier {
    77
    8   SupervisedClassifier::SupervisedClassifier(const Target& target,
     8  SupervisedClassifier::SupervisedClassifier(const Target& target)
     9    : target_(target), score_(0), ranker_(0), nof_inputs_(0),
     10      trained_(false)
     11  {
     12  }
     13
     14    SupervisedClassifier::SupervisedClassifier(const Target& target,
    915                                             statistics::Score* score,
    1016                                             const size_t nof_inputs)
     
    1420  }
    1521
     22
    1623}}
Note: See TracChangeset for help on using the changeset viewer.