mirror of
https://github.com/php-win-ext/php-svm.git
synced 2026-04-28 11:13:11 +02:00
48 lines
1.7 KiB
C
48 lines
1.7 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| PHP Version 5 / svm |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2010 Ian Barber |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.php.net/license/3_0.txt. |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Ian Barber <ian.barber@gmail.com> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef _PHP_SVM_INTERNAL_H_
|
|
# define _PHP_SVM_INTERNAL_H_
|
|
|
|
#include <libsvm/svm.h>
|
|
|
|
typedef struct _php_svm_object {
|
|
zend_object zo;
|
|
/* hold the SVM parameters */
|
|
struct svm_parameter param;
|
|
|
|
/* Store the last error message here */
|
|
char last_error[512];
|
|
|
|
} php_svm_object;
|
|
|
|
typedef struct _php_svm_model_object {
|
|
zend_object zo;
|
|
|
|
/* Hold the training data */
|
|
struct svm_node *x_space;
|
|
|
|
/* hold the model generated by training, or to be used for classifying*/
|
|
struct svm_model *model;
|
|
|
|
} php_svm_model_object;
|
|
|
|
#endif /* _PHP_SVM_INTERNAL_H_ */
|
|
|
|
|