Advertisement
Guest User

Untitled

a guest
Oct 19th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #ifndef __CCSOSVM_H__
  2. #define __CCSOSVM_H__
  3.  
  4. #include <shogun/machine/LinearStructuredOutputMachine.h>
  5.  
  6. namespace shogun
  7. {
  8. class CCSOSVM : public CLinearStructuredOutputMachine
  9. {
  10. public:
  11. CCSOSVM();
  12.  
  13. virtual ~CCSOSVM();
  14.  
  15. /** @return object name */
  16. inline virtual const char* get_name() const { return "CCSOSVM"; }
  17.  
  18. protected:
  19. /** train dual SO-SVM
  20. *
  21. */
  22. bool train_machine(CFeatures* data=NULL);
  23. };
  24. }
  25.  
  26. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement