Skip to content

Commit

Permalink
Updated doc of LatentSOSVM
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Aug 21, 2012
1 parent 8d0d4e2 commit d5c67f9
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/shogun/latent/LatentSOSVM.h
Expand Up @@ -16,9 +16,9 @@

namespace shogun
{
/**
* @brief TODO
*
/** @brief class Latent Structured Output SVM,
* an structured output based machine for classification
* problems with latent variables.
*/
class CLatentSOSVM: public CLinearLatentMachine
{
Expand All @@ -43,6 +43,10 @@ namespace shogun
*/
virtual CLatentLabels* apply();

/** set SO solver that is going to be used
*
* @param so SO machine
*/
void set_so_solver(CLinearStructuredOutputMachine* so);

/** Returns the name of the SGSerializable instance.
Expand All @@ -52,6 +56,10 @@ namespace shogun
virtual const char* get_name() const { return "LatentSOSVM"; }

protected:
/** do inner loop with given cooling epsilon
*
* @param cooling_eps cooling epsilon
*/
virtual float64_t do_inner_loop(float64_t cooling_eps);

private:
Expand Down

0 comments on commit d5c67f9

Please sign in to comment.