data.h 318 B

1234567891011121314151617
  1. #ifndef LOCAL_DATA_H
  2. #define LOCAL_DATA_H
  3. #include "svm.h"
  4. #define HaveCount 2550
  5. #define TestCount 450
  6. #define NoneCount 3000
  7. #define Features 23
  8. static float Have[HaveCount][Features];
  9. static float Test[TestCount][Features];
  10. static float None[NoneCount][Features];
  11. Node *f2n(uint8_t which, uint32_t idx);
  12. #endif