SHOGUN  4.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
LatentSOSVM.h
Go to the documentation of this file.
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 Viktor Gal
8  * Copyright (C) 2012 Viktor Gal
9  */
10 
11 #ifndef __LATENTSOSVM_H__
12 #define __LATENTSOSVM_H__
13 
14 #include <shogun/lib/config.h>
15 
18 
19 namespace shogun
20 {
26  {
27  public:
29  CLatentSOSVM();
30 
38 
39  virtual ~CLatentSOSVM();
40 
45  virtual CLatentLabels* apply_latent();
46 
52 
57  virtual const char* get_name() const { return "LatentSOSVM"; }
58 
59  protected:
64  virtual float64_t do_inner_loop(float64_t cooling_eps);
65 
66  private:
67  void register_parameters();
68 
69  private:
71  CLinearStructuredOutputMachine* m_so_solver;
72  };
73 }
74 
75 #endif /* __LATENTSOSVM_H__ */
76 
Abstract class CLatentModel It represents the application specific model and contains most of the app...
Definition: LatentModel.h:33
class Latent Structured Output SVM, an structured output based machine for classification problems wi...
Definition: LatentSOSVM.h:25
virtual const char * get_name() const
Definition: LatentSOSVM.h:57
double float64_t
Definition: common.h:50
virtual CLatentLabels * apply_latent()
Definition: LatentSOSVM.cpp:35
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
abstract implementaion of Linear Machine with latent variable This is the base implementation of all ...
void set_so_solver(CLinearStructuredOutputMachine *so)
Definition: LatentSOSVM.cpp:40
abstract class for latent labels As latent labels always depends on the given application, this class only defines the API that the user has to implement for latent labels.
Definition: LatentLabels.h:26
virtual float64_t do_inner_loop(float64_t cooling_eps)
Definition: LatentSOSVM.cpp:47

SHOGUN Machine Learning Toolbox - Documentation