svm.h 200 B

1234567891011121314151617
  1. #ifndef MY_SVM_SVM_H
  2. #define MY_SVM_SVM_H
  3. #include <stdint.h>
  4. typedef struct {
  5. uint32_t idx;
  6. float val;
  7. } Node;
  8. void svm_init();
  9. Node *input();
  10. int8_t svm_predict(const Node *x);
  11. #endif