SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
vw_label.h
浏览该文件的文档.
1 /*
2  * Copyright (c) 2009 Yahoo! Inc. All rights reserved. The copyrights
3  * embodied in the content of this file are licensed under the BSD
4  * (revised) open source license.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Written (W) 2011 Shashwat Lal Das
12  * Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society.
13  */
14 
15 #ifndef _VW_LABEL_H__
16 #define _VW_LABEL_H__
17 
18 #include <shogun/lib/config.h>
19 
20 #include <shogun/lib/DataType.h>
21 #include <shogun/lib/common.h>
22 #include <shogun/lib/v_array.h>
23 #include <shogun/io/SGIO.h>
25 
26 namespace shogun
27 {
28 
34 class VwLabel
35 {
36 public:
40  VwLabel(): label(FLT_MAX), weight(1.), initial(0.) { }
41 
45  ~VwLabel() { }
46 
51  inline float32_t get_label() { return label; }
52 
57  inline void set_label(float32_t l) { label = l; }
58 
63  inline float32_t get_weight() { return weight; }
64 
69  inline void set_weight(float32_t w) { weight = w; }
70 
75  inline float32_t get_initial() { return initial; }
76 
81  inline void set_initial(float32_t i) { initial = i; }
82 
89 
90 public:
97 };
98 
99 }
100 #endif // _VW_LABEL_H__
Class v_array taken directly from JL's implementation.
float32_t label
Label value.
Definition: vw_label.h:92
float32_t get_initial()
Definition: vw_label.h:75
float32_t weight
Weight of example.
Definition: vw_label.h:94
Class VwLabel holds a label object used by VW.
Definition: vw_label.h:34
void label_from_substring(v_array< substring > &words)
Definition: vw_label.cpp:19
float32_t get_label()
Definition: vw_label.h:51
void set_label(float32_t l)
Definition: vw_label.h:57
void set_initial(float32_t i)
Definition: vw_label.h:81
float float32_t
Definition: common.h:49
float32_t initial
Initial approximation.
Definition: vw_label.h:96
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
void set_weight(float32_t w)
Definition: vw_label.h:69
float32_t get_weight()
Definition: vw_label.h:63

SHOGUN 机器学习工具包 - 项目文档