Almost there!
DSP Block "Raw data" has no generated features
Layer type | |
---|---|
Dense
Fully connected layer, the simplest form of a neural network layer.
Use this for processed data, such as the output of a spectral analysis DSP block.
|
|
1D Convolution / pooling
Learn features that take spatial information into account along a single dimension.
Use this for raw data, or for DSP blocks that output spatial data, such as the MFCC block.
|
|
2D Convolution / pooling
Learn features that take spatial information into account along two dimensions.
Use this for raw data, or for DSP blocks that output spatial data, such as the MFCC block.
|
|
Reshape
Turn one-dimensional data from a DSP block into multi-dimensional data.
Use this as an input to a convolutional layer.
Use this for deep learning on raw data, or to process MFCC output.
|
|
Flatten
Flatten multi-dimensional data into a single dimension.
You need to flatten data from a convolutional layer before returning.
|
|
Dropout
Reduce the risk of a model overfitting your dataset by randomly cutting a fraction
of network connections during training. Can be helpful if your model's training performance
is better than its validation performance.
|
Model | Author | |
---|---|---|
LGBM Random Forest Regressor
|
Edge Impulse Inc. | |
XGBoost Random Forest Regressor
|
Edge Impulse Inc. | |
Random Forest Regressor
|
Edge Impulse Inc. | |
Linear Regression
|
Edge Impulse Inc. | |
Ridge Regression
|
Edge Impulse Inc. | |
RidgeCV Regression
|
Edge Impulse Inc. |
Description | Author | |
---|---|---|
EfficientNet V2B0
Supports both RGB and grayscale.
|
Edge Impulse |
|
MobileNetV2 0.35
Supports both RGB and grayscale.
|
Edge Impulse |
|
MobileNetV2 0.50
Supports both RGB and grayscale.
|
Edge Impulse |
|
MobileNetV2 0.75
Supports both RGB and grayscale.
|
Edge Impulse |
|
MobileNetV2 1.0
Supports both RGB and grayscale.
|
Edge Impulse |
|
MobileNetV2 0.1
Supports both RGB and grayscale.
|
Edge Impulse |
|
Description | Author | Recommended | |
---|---|---|---|
LGBM Random Forest Regressor
The LightGBM Random Forest Regressor applies an ensemble of decision trees with gradient boosting to provide fast, efficient, and accurate regression over large datasets.
|
Edge Impulse |
|
|
XGBoost Random Forest Regressor
The XGBoost Random Forest Regressor combines the speed and performance of gradient boosting with the robustness of a random forest to achieve high-accuracy regression on complex datasets.
|
Edge Impulse |
|
|
Random Forest Regressor
The scikit-learn Random Forest Regressor is an ensemble learning method that uses multiple decision trees to predict continuous values, offering high accuracy and handling complex datasets effectively.
|
Edge Impulse |
|
|
Linear Regression
The scikit-learn Linear Regressor is a straightforward approach that models the relationship between a dependent variable and one or more independent variables using a linear equation to predict continuous outcomes.
|
Edge Impulse |
|
|
Ridge Regression
The scikit-learn Ridge regressor applies L2 regularization to linear regression, balancing the fit and complexity of the model to improve prediction accuracy on new data by preventing overfitting.
|
Edge Impulse |
|
|
RidgeCV Regression
The scikit-learn RidgeCV regressor combines ridge regression with built-in cross-validation to automatically tune the regularization strength, ensuring optimal balance between model complexity and performance on unseen data.
|
Edge Impulse |
|