libp3bm.h

Go to the documentation of this file.
00001 /*
00002  * This program is free software; you can redistribute it and/or modify
00003  * it under the terms of the GNU General Public License as published by
00004  * the Free Software Foundation; either version 3 of the License, or
00005  * (at your option) any later version.
00006  *
00007  * libp3bm.h: Implementation of the Proximal Point P-BMRM solver for SO training
00008  *
00009  * Copyright (C) 2012 Michal Uricar, uricamic@cmp.felk.cvut.cz
00010  *
00011  * Implementation of the Proximal Point P-BMRM (3pbm)
00012  *--------------------------------------------------------------------- */
00013 
00014 #include <shogun/lib/common.h>
00015 #include <shogun/structure/libbmrm.h>
00016 
00017 #ifndef libp3bm_h
00018 #define libp3bm_h
00019 
00020 namespace shogun
00021 {
00041     bmrm_return_value_T svm_p3bm_solver(
00042             CStructuredModel *model,
00043             float64_t       *W,
00044             float64_t       TolRel,
00045             float64_t       TolAbs,
00046             float64_t       _lambda,
00047             uint32_t        _BufSize,
00048             bool            cleanICP,
00049             uint32_t        cleanAfter,
00050             float64_t       K,
00051             uint32_t        Tmax,
00052             uint32_t        cp_models,
00053             bool            verbose
00054             );
00055 
00056 }
00057 
00058 #endif /* libp3bm_h */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

SHOGUN Machine Learning Toolbox - Documentation