SHOGUN
v3.2.0
首页
相关页面
模块
类
文件
文件列表
文件成员
全部
类
命名空间
文件
函数
变量
类型定义
枚举
枚举值
友元
宏定义
组
页
src
shogun
evaluation
ClusteringMutualInformation.h
浏览该文件的文档.
1
/*
2
* This program is free software; you can redistribute it and/or modify
3
* it under the terms of the GNU General Public License as published by
4
* the Free Software Foundation; either version 3 of the License, or
5
* (at your option) any later version.
6
*
7
* Written (W) 2012 Chiyuan Zhang
8
* Copyright (C) 2012 Chiyuan Zhang
9
*/
10
11
#ifndef __CLUSTERINGMUTUALINFORMATION_H__
12
#define __CLUSTERINGMUTUALINFORMATION_H__
13
14
#include <
shogun/evaluation/ClusteringEvaluation.h
>
15
16
namespace
shogun
17
{
18
21
class
CClusteringMutualInformation
:
public
CClusteringEvaluation
22
{
23
public
:
25
CClusteringMutualInformation
():
CClusteringEvaluation
() {}
26
28
virtual
~CClusteringMutualInformation
() {}
29
38
virtual
float64_t
evaluate
(
CLabels
* predicted,
CLabels
* ground_truth);
39
41
virtual
EEvaluationDirection
get_evaluation_direction
()
const
42
{
43
return
ED_MINIMIZE
;
44
}
45
51
virtual
const
char
*
get_name
()
const
52
{
53
return
"ClusteringMutualInformation"
;
54
}
55
};
56
57
}
58
59
#endif
/* end of include guard: __CLUSTERINGMUTUALINFORMATION_H__ */
shogun::CClusteringMutualInformation::evaluate
virtual float64_t evaluate(CLabels *predicted, CLabels *ground_truth)
Definition:
ClusteringMutualInformation.cpp:17
shogun::CClusteringMutualInformation::~CClusteringMutualInformation
virtual ~CClusteringMutualInformation()
Definition:
ClusteringMutualInformation.h:28
shogun::CLabels
The class Labels models labels, i.e. class assignments of objects.
Definition:
Labels.h:35
shogun::CClusteringMutualInformation::CClusteringMutualInformation
CClusteringMutualInformation()
Definition:
ClusteringMutualInformation.h:25
shogun::ED_MINIMIZE
Definition:
Evaluation.h:26
shogun::CClusteringEvaluation
The base class used to evaluate clustering.
Definition:
ClusteringEvaluation.h:24
shogun::EEvaluationDirection
EEvaluationDirection
Definition:
Evaluation.h:24
float64_t
double float64_t
Definition:
common.h:48
shogun::CClusteringMutualInformation::get_evaluation_direction
virtual EEvaluationDirection get_evaluation_direction() const
Definition:
ClusteringMutualInformation.h:41
shogun::CClusteringMutualInformation
clustering (normalized) mutual information
Definition:
ClusteringMutualInformation.h:21
shogun::CClusteringMutualInformation::get_name
virtual const char * get_name() const
Definition:
ClusteringMutualInformation.h:51
ClusteringEvaluation.h
SHOGUN
Machine Learning Toolbox - Documentation