You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/paddle/gserver/evaluators/Evaluator.h

448 lines
12 KiB

/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#pragma once
#include <fstream>
#include "ModelConfig.pb.h"
#include "paddle/parameter/Argument.h"
#include "paddle/pserver/ParameterClient2.h"
#include "paddle/utils/ClassRegistrar.h"
8 years ago
#include "paddle/utils/Error.h"
namespace paddle {
class NeuralNetwork;
/**
* @def REGISTER_EVALUATOR
* @brief Macro for registering evaluator class
*/
#define REGISTER_EVALUATOR(__type_name, __class_name) \
static InitFunction __reg_type_##__type_name([]() { \
Evaluator::registrar_.registerClass<__class_name>(#__type_name); \
})
/**
* @brief Base class for Evaluator
* Evaluating the performance of a model is very important.
* It indicates how successful the scores(predictions) of a datasets
* has been by a trained model.
*/
class Evaluator {
public:
static Evaluator* create(const EvaluatorConfig& config);
Evaluator() : numSamples_(0), totalScore_(0) {}
virtual ~Evaluator() {}
virtual void init(const EvaluatorConfig& config) { config_ = config; }
/**
* @brief start to evaluate some data
*/
virtual void start() {
numSamples_ = 0;
totalScore_ = 0;
}
/**
* @brief Process a batch of data.
*/
virtual void eval(const NeuralNetwork& nn);
/**
* @brief Process a batch of data.
* @return the score for the batch if it make sense to sum the score across
* batches.
* @note Otherwise evaluator should return 0 and override finish() and
* printStats() to do the right calculation.
*/
virtual real evalImp(std::vector<Argument>& arguments) = 0;
/**
* @brief Update the number of processed samples
*/
virtual void updateSamplesNum(const std::vector<Argument>& arguments) {
numSamples_ += arguments[0].getBatchSize();
}
/// finish() should be called before distributeEval
virtual void distributeEval(ParameterClient2* client) {
LOG(FATAL) << "Not implemeted";
}
void mergeResultsOfAllClients(ParameterClient2* client) {
double data[2] = {totalScore_, numSamples_};
client->reduce(data, data, 2, FLAGS_trainer_id, 0);
totalScore_ = data[0];
numSamples_ = data[1];
}
/**
* @brief finish the evaluation.
*/
virtual void finish() {}
/**
* @brief print the statistics of evaluate result
* @note finish() should be called before printStats
*/
virtual void printStats(std::ostream& os) const {
os << config_.name() << "="
<< (numSamples_ ? totalScore_ / numSamples_ : 0);
}
friend std::ostream& operator<<(std::ostream& os,
const Evaluator& evaluator) {
evaluator.printStats(os);
return os;
}
friend std::ostream&& operator<<(std::ostream&& os, // NOLINT
const Evaluator& evaluator) {
evaluator.printStats(os);
return std::move(os);
}
static ClassRegistrar<Evaluator> registrar_;
8 years ago
virtual void getNames(std::vector<std::string>* names) {
names->clear();
names->push_back(config_.name());
}
virtual real getValue(const std::string& name,
paddle::Error* err = nullptr) const {
if (name != config_.name() && err != nullptr) {
*err = paddle::Error("no such name of evaluator %s", name.c_str());
return .0f;
}
return this->getValueImpl();
}
virtual std::string getValueStr(const std::string& name,
paddle::Error* err = nullptr) const {
paddle::Error localErr;
if (err == nullptr) {
err = &localErr;
}
real result = this->getValue(name, err);
if (!err->isOK()) {
return "";
} else {
return std::to_string(result);
}
}
8 years ago
virtual std::string getType(const std::string& name,
paddle::Error* err = nullptr) const {
if (name != config_.name() && err != nullptr) {
*err = paddle::Error("no such name of evaluator %s", name.c_str());
return std::string();
}
return this->getTypeImpl();
}
protected:
virtual real getValueImpl() const {
return numSamples_ != .0 ? totalScore_ / numSamples_ : .0;
}
8 years ago
virtual std::string getTypeImpl() const { return "base"; }
protected:
EvaluatorConfig config_;
double numSamples_;
double totalScore_;
};
class DummyEvaluator : public Evaluator {
public:
DummyEvaluator() {}
virtual void init(const EvaluatorConfig&) {}
virtual void start() {}
virtual void eval(const NeuralNetwork&) {}
virtual real evalImp(std::vector<Argument>& arguments) {
(void)arguments;
return -1;
}
virtual void finish() {}
virtual void printStats(std::ostream&) const {}
8 years ago
// Evaluator interface
protected:
std::string getTypeImpl() const;
};
/**
* @brief evaluate AUC using colIdx-th column as prediction.
* The AUC(Area Under the Curve) is a common evaluation metric
* for binary classification problems. It computes the area under
* the receiver operating characteristic(ROC) curve.
*
* @note colIdx-th column
*
* - colIdx = 0: the 0-th column.
* - colIdx > 0: the colIdx-th column.
* - colIdx < 0: the last colIdx-th column.
*
* The config file api is auc_evaluator.
*
*/
class AucEvaluator : public Evaluator {
public:
AucEvaluator(int32_t colIdx)
: colIdx_(colIdx),
realColumnIdx_(0),
cpuOutput_(nullptr),
cpuLabel_(nullptr),
cpuWeight_(nullptr) {}
virtual void start();
virtual real evalImp(std::vector<Argument>& arguments);
virtual void printStats(std::ostream& os) const {
os << config_.name() << "=" << calcAuc();
}
virtual void distributeEval(ParameterClient2* client);
private:
static const uint32_t kBinNum_ = (1 << 24) - 1;
static const int kNegativeLabel_ = 0;
double statPos_[kBinNum_ + 1];
double statNeg_[kBinNum_ + 1];
int32_t colIdx_;
uint32_t realColumnIdx_;
MatrixPtr cpuOutput_;
IVectorPtr cpuLabel_;
MatrixPtr cpuWeight_;
AucEvaluator() {}
inline static double trapezoidArea(double X1,
double X2,
double Y1,
double Y2) {
return (X1 > X2 ? (X1 - X2) : (X2 - X1)) * (Y1 + Y2) / 2.0;
}
double calcAuc() const;
8 years ago
// Evaluator interface
protected:
real getValueImpl() const;
std::string getTypeImpl() const;
};
/**
* @brief RankAucEvaluator calculates the AUC of each list (i.e., titles
* under the same query), and averages them. Each list should be organized
* as a sequence. The inputs of this evaluator is [output, click, pv]. If pv
* is not provided, it will be set to 1. The types of click and pv are
* dense value.
*/
class RankAucEvaluator : public Evaluator {
public:
// evaluate ranking AUC
virtual void start();
virtual void updateSamplesNum(const std::vector<Argument>& arguments);
virtual real evalImp(std::vector<Argument>& arguments);
virtual void distributeEval(ParameterClient2* client) {
mergeResultsOfAllClients(client);
}
private:
MatrixPtr output_;
MatrixPtr click_;
MatrixPtr pv_;
std::vector<std::pair<real, int>> outputPair_;
double calcRankAuc(real* outputData,
real* clickData,
real* pvData,
size_t size);
// Evaluator interface
protected:
std::string getTypeImpl() const;
};
/**
* @brief precision, recall and f1 score Evaluator
* \f[
* precision = \frac{tp}{tp+tn} \\
* recall=\frac{tp}{tp+fn} \\
* f1=2*\frac{precsion*recall}{precision+recall}
* \f]
*
* The config file api is precision_recall_evaluator.
*/
class PrecisionRecallEvaluator : public Evaluator {
public:
// Evaluate precision, recall and F1 score
PrecisionRecallEvaluator()
: isMultiBinaryLabel_(false),
cpuOutput_(nullptr),
cpuLabel_(nullptr),
cpuWeight_(nullptr) {}
virtual void start();
virtual real evalImp(std::vector<Argument>& arguments);
virtual void printStats(std::ostream& os) const;
virtual void distributeEval(ParameterClient2* client);
struct StatsInfo {
/// numbers of true positives
double TP;
/// numbers of true negatives
double TN;
/// numbers of false positives
double FP;
/// numbers of false negatives
double FN;
StatsInfo() : TP(0.0), TN(0.0), FP(0.0), FN(0.0) {}
};
private:
bool isMultiBinaryLabel_;
std::vector<StatsInfo> statsInfo_;
MatrixPtr cpuOutput_;
IVectorPtr cpuLabel_;
MatrixPtr cpuWeight_;
template <typename T1, typename T2>
void printStatsHelper(T1 labelCallback, T2 microAvgCallback) const;
void calcStatsInfo(const MatrixPtr& output,
const IVectorPtr& label,
const MatrixPtr& weight);
void calcStatsInfoMulti(const MatrixPtr& output,
const MatrixPtr& label,
const MatrixPtr& weight);
inline static double calcPrecision(double TP, double FP) {
if (TP > 0.0 || FP > 0.0) {
return TP / (TP + FP);
} else {
return 1.0;
}
}
inline static double calcRecall(double TP, double FN) {
if (TP > 0.0 || FN > 0.0) {
return TP / (TP + FN);
} else {
return 1.0;
}
}
inline static double calcF1Score(double precision, double recall) {
if (precision > 0.0 || recall > 0.0) {
return 2 * precision * recall / (precision + recall);
} else {
return 0;
}
}
mutable std::unordered_map<std::string, real> values_;
void storeLocalValues() const;
// Evaluator interface
public:
void getNames(std::vector<std::string>* names);
real getValue(const std::string& name, Error* err) const;
std::string getType(const std::string& name, Error* err) const;
};
/*
* @brief positive-negative pair rate Evaluator
*
* The config file api is pnpair_evaluator.
*/
class PnpairEvaluator : public Evaluator {
public:
PnpairEvaluator()
: cpuOutput_(nullptr),
cpuLabel_(nullptr),
cpuInfo_(nullptr),
cpuWeight_(nullptr) {}
virtual void start();
virtual real evalImp(std::vector<Argument>& arguments);
struct PredictionResult {
PredictionResult(real __out, int __label, int __queryid, real __weight)
: out(__out), label(__label), queryid(__queryid), weight(__weight) {}
real out;
int label;
int queryid;
real weight;
};
std::vector<PredictionResult> predictArray_;
void printPredictResults() {
std::ofstream fs(FLAGS_predict_file);
CHECK(fs) << "Fail to open " << FLAGS_predict_file;
for (auto& res : predictArray_) {
fs << res.out << " " << res.label << " " << res.queryid << std::endl;
}
}
void stat(size_t start,
size_t end,
PredictionResult* answers,
double& pos,
double& neg,
double& spe);
void calc(std::vector<PredictionResult>& predictArray);
virtual void finish() { calc(predictArray_); }
virtual void printStats(std::ostream& os) const {
os << " pos/neg=" << this->getValueImpl();
}
virtual void distributeEval(ParameterClient2* client) {
client->reduce(pairArray_, pairArray_, kPairArrayNum_, FLAGS_trainer_id, 0);
LOG(INFO) << " distribute eval calc total pos pair: " << pairArray_[0]
<< " calc total neg pair: " << pairArray_[1];
}
private:
static const uint32_t kPairArrayNum_ = 2;
double pairArray_[kPairArrayNum_];
MatrixPtr cpuOutput_;
IVectorPtr cpuLabel_;
IVectorPtr cpuInfo_;
MatrixPtr cpuWeight_;
// Evaluator interface
protected:
real getValueImpl() const {
return pairArray_[0] / ((pairArray_[1] <= 0) ? 1.0 : pairArray_[1]);
}
std::string getTypeImpl() const;
};
} // namespace paddle