mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
60 lines
1.8 KiB
C
60 lines
1.8 KiB
C
/**
|
|
******************************************************************************
|
|
* @file layers_svmregressor.h
|
|
* @author AIS
|
|
* @brief header file of AI platform SVM Regressor datatypes
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2021 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef LAYERS_TREE_ENSEMBLE_REGRESSOR_H
|
|
#define LAYERS_TREE_ENSEMBLE_REGRESSOR_H
|
|
|
|
#include "layers_common.h"
|
|
#include "layers_ml_treeensembleclassifier.h"
|
|
#include "layers_nl.h"
|
|
|
|
/*!
|
|
* @defgroup layers_svmreg Layers Definitions
|
|
* @brief definition
|
|
*
|
|
*/
|
|
|
|
AI_API_DECLARE_BEGIN
|
|
|
|
typedef AI_ALIGNED_TYPE(struct, 4) ai_layer_tree_ensemble_regressor_ {
|
|
AI_LAYER_COMMON_FIELDS_DECLARE
|
|
func_nl nl_func;
|
|
uint8_t all_weights_are_positive;
|
|
ai_float nodes_values_offset;
|
|
ai_float nodes_values_scale;
|
|
ai_float target_weights_offset;
|
|
ai_float target_weights_scale;
|
|
} ai_layer_tree_ensemble_regressor;
|
|
|
|
/******************************************************************************/
|
|
/* Forward Functions Section */
|
|
/******************************************************************************/
|
|
|
|
/*!
|
|
* @brief Decodes the TreeEnsembleRegressor ML operator.
|
|
* @ingroup layers_svmreg
|
|
* @param layer tree ensemble regressor layer
|
|
*/
|
|
AI_INTERNAL_API
|
|
void forward_tree_ensemble_regressor(ai_layer *pLayer);
|
|
|
|
|
|
AI_API_DECLARE_END
|
|
|
|
#endif /*LAYERS_SVMREGRESSOR_H*/
|