You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
401 B
C
16 lines
401 B
C
void test_gaussian_naive_bayes_predict_f32();
|
|
|
|
// Pattern IDs
|
|
static const int DIMS1_S16_ID=0;
|
|
static const int INPUTS1_F32_ID=1;
|
|
static const int PARAMS1_F32_ID=2;
|
|
static const int PROBAS1_F32_ID=3;
|
|
static const int PREDICTS1_S16_ID=4;
|
|
|
|
// Output IDs
|
|
static const int OUT_PROBA_F32_ID=0;
|
|
static const int OUT_PREDICT_S16_ID=1;
|
|
|
|
// Test IDs
|
|
static const int TEST_GAUSSIAN_NAIVE_BAYES_PREDICT_F32_1=1;
|