1234567891011121314151617 |
- #ifndef LOCAL_DATA_H
- #define LOCAL_DATA_H
- #include "svm.h"
- #define HaveCount 2550
- #define TestCount 450
- #define NoneCount 3000
- #define Features 23
- static float Have[HaveCount][Features];
- static float Test[TestCount][Features];
- static float None[NoneCount][Features];
- Node *f2n(uint8_t which, uint32_t idx);
- #endif
|