| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /* ----------------------------------------------------------------------
- * Copyright (C) 2019-2020 ARM Limited. All rights reserved.
- *
- * $Date: 09. December 2019
- * $Revision: V1.0.0
- *
- * Project: CMSIS DSP Library
- * Title: arm_bayes_example_f32.c
- *
- * Description: Example code demonstrating how to use Bayes functions.
- *
- * Target Processor: Cortex-M/Cortex-A
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * - Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- * - Neither the name of ARM LIMITED nor the names of its contributors
- * may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
- * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- * -------------------------------------------------------------------- */
- /**
- * @addtogroup groupExamples Examples
- * @{
- *
- * @defgroup BayesExample Bayes Example
- *
- * \par Description:
- * \par
- * Demonstrates the use of Bayesian classifier functions. It is complementing the tutorial
- * about classical ML with CMSIS-DSP and python scikit-learn:
- * https://developer.arm.com/solutions/machine-learning-on-arm/developer-material/how-to-guides/implement-classical-ml-with-arm-cmsis-dsp-libraries
- *
- * \example arm_bayes_example_f32.c
- *
- * @} */
- #include <math.h>
- #include <stdio.h>
- #include "arm_math.h"
- /*
- Those parameters can be generated with the python library scikit-learn.
- */
- arm_gaussian_naive_bayes_instance_f32 S;
- #define NB_OF_CLASSES 3
- #define VECTOR_DIMENSION 2
- const float32_t theta[NB_OF_CLASSES*VECTOR_DIMENSION] = {
- 1.4539529436590528f, 0.8722776016801852f,
- -1.5267934452462473f, 0.903204577814203f,
- -0.15338006360932258f, -2.9997913665803964f
- }; /**< Mean values for the Gaussians */
- const float32_t sigma[NB_OF_CLASSES*VECTOR_DIMENSION] = {
- 1.0063470889514925f, 0.9038018246524426f,
- 1.0224479953244736f, 0.7768764290432544f,
- 1.1217662403241206f, 1.2303890106020325f
- }; /**< Variances for the Gaussians */
- const float32_t classPriors[NB_OF_CLASSES] = {
- 0.3333333333333333f, 0.3333333333333333f, 0.3333333333333333f
- }; /**< Class prior probabilities */
- int32_t main(void)
- {
- /* Array of input data */
- float32_t in[2];
- /* Result of the classifier */
- float32_t result[NB_OF_CLASSES];
- float32_t temp[NB_OF_CLASSES];
- float32_t maxProba;
- uint32_t index;
-
- S.vectorDimension = VECTOR_DIMENSION;
- S.numberOfClasses = NB_OF_CLASSES;
- S.theta = theta;
- S.sigma = sigma;
- S.classPriors = classPriors;
- S.epsilon=4.328939296523643e-09f;
- in[0] = 1.5f;
- in[1] = 1.0f;
- index = arm_gaussian_naive_bayes_predict_f32(&S, in, result,temp);
- maxProba = result[index];
- #if defined(SEMIHOSTING)
- printf("Class = %d\n", index);
- printf("Max proba = %f\n", (double)maxProba);
- #endif
- in[0] = -1.5f;
- in[1] = 1.0f;
- index = arm_gaussian_naive_bayes_predict_f32(&S, in, result,temp);
- maxProba = result[index];
- #if defined(SEMIHOSTING)
- printf("Class = %d\n", index);
- printf("Max proba = %f\n", (double)maxProba);
- #endif
- in[0] = 0.0f;
- in[1] = -3.0f;
- index = arm_gaussian_naive_bayes_predict_f32(&S, in, result,temp);
- maxProba = result[index];
- #if defined(SEMIHOSTING)
- printf("Class = %d\n", index);
- printf("Max proba = %f\n", (double)maxProba);
- #endif
- #if !defined(SEMIHOSTING)
- while (1); /* main function does not return */
- #endif
- }
|