Impulse setup for image classification.
Choose a different transfer learning model.
Models
Edge Impulse uses state of the art architectures available for you to train or fine-tune for your specific application.MobileNetV1
MobileNetV1
MobileNetV1
MobileNetV1 is a lightweight and efficient convolutional neural network designed for mobile and embedded vision applications. It leverages depthwise separable convolutions to reduce computational complexity, making it ideal for real-time processing on resource-constrained devices.Pre-trained on the ImageNet dataset with a 96x96 resolution, MobileNetV1 supports both RGB and grayscale inputs, offering flexibility for various use cases.- Size (96x96): The optimal input image resolution (but you can use another resolution), optimized for capturing essential details while maintaining efficiency.
- Alpha (e.g., 0.25): A width multiplier that scales the number of channels in each layer, allowing you to balance model size and performance. Lower values create more compact models suitable for constrained devices.
- MobileNetV1 96x96 0.25: Uses around 105.9K RAM and 301.6K ROM, providing a good balance of performance and efficiency.
- MobileNetV1 96x96 0.2: Optimized for speed with around 83.1K RAM and 218.3K ROM, ideal for applications with tight resource constraints.
- MobileNetV1 96x96 0.1: Ultra-lightweight, using around 53.2K RAM and 101K ROM, perfect for environments with minimal computational resources.
MobileNetV2
MobileNetV2
MobileNetV2
MobileNetV2 is an advanced architecture designed for efficient image classification. Building on MobileNetV1, it introduces features like inverted residuals and linear bottlenecks to improve accuracy while keeping computational costs low.We offer two input resolutions, 96x96 and 160x160, each optimized for different use cases:- Size (e.g., 96x96, 160x160): Determines the optimal input image resolution (but you can use another resolution). Larger sizes capture more detail but require more computational resources.
- Alpha (e.g., 0.35): A width multiplier that adjusts the model’s capacity. Lower values create leaner, faster models suitable for edge devices, while higher values enhance accuracy for more complex tasks.
- MobileNetV2 96x96 0.35: Balances performance and efficiency, using around 296.8K RAM and 575.2K ROM. Supports both RGB and grayscale inputs.
- MobileNetV2 96x96 0.1: Optimized for speed with around 270.2K RAM and 212.3K ROM. Supports both RGB and grayscale inputs.
- MobileNetV2 96x96 0.05: Ultra-lightweight, using around 265.3K RAM and 162.4K ROM. Supports both RGB and grayscale inputs.
- MobileNetV2 160x160 1.0: High-accuracy model using around 1.3M RAM and 2.6M ROM. Supports RGB inputs only.
- MobileNetV2 160x160 0.75: Offers a balance of performance and resource usage, with around 1.3M RAM and 1.7M ROM. Supports RGB inputs only.
- MobileNetV2 160x160 0.5: Efficient yet powerful, using around 700.7K RAM and 982.4K ROM. Supports RGB inputs only.
- MobileNetV2 160x160 0.35: Lean and efficient, with around 683.3K RAM and 658.4K ROM. Supports RGB inputs only.
EfficientNet
EfficientNet
EfficientNet
EfficientNet is a family of high-performance image classification models designed to scale efficiently across various resource constraints. These models offer a balance between accuracy and computational efficiency, making them suitable for complex use cases, particularly on Linux systems.Model Size: EfficientNet models range from B0 to B5, scaling from 4M to 28.3M parameters. Larger models offer higher accuracy but require more computational resources.- B0: 4M parameters, 16 MB
- B1: 6.5M parameters, 26 MB
- B2: 7.7M parameters, 30.8 MB
- B3: 10.7M parameters, 42.8 MB
- B4: 17.5M parameters, 70 MB
- B5: 28.3M parameters, 113.2 MB
- Valid options:
dense: X
(where X=neurons),dropout: X
(where X=dropout rate between 0..1). - Example:
dense: 32, dropout: 0.1
- Valid options:
flip
,crop
,brightness
- Example:
flip, crop, brightness
Neural Network settings
See Neural Network Settings on the Learning Block page.Expert mode
See Expert mode on the Learning Block page. The preset configurations just don’t work for your model? No worries, Expert Mode is for you! Expert Mode gives you full control of your model so that you can configure it however you want. To enable the expert mode, just click on the ”⋮” button and toggle the expert mode.Expert mode.