Update README.md
Browse files
README.md
CHANGED
|
@@ -31,15 +31,16 @@ base_model:
|
|
| 31 |
# Custom ResNet-18 with integrated Dropout Layers
|
| 32 |
|
| 33 |
This is a **custom ResNet-18** ONNX model implemented in **PyTorch** with integrated **Dropout** layers.
|
| 34 |
-
|
| 35 |
It was trained on the **CIFAR-10** dataset for image classification tasks.
|
| 36 |
-
|
| 37 |
The model has been exported using **opset version 15** and is fully compatible with the **Aidge** platform.
|
| 38 |
|
| 39 |
## Details
|
| 40 |
|
| 41 |
-
- **Architecture**: ResNet-18
|
| 42 |
-
- **Trained on**: CIFAR-10 (60,000 32x32 color images
|
|
|
|
|
|
|
|
|
|
| 43 |
- **ONNX opset version**: 15
|
| 44 |
- **Conversion tool**: PyTorch → ONNX
|
| 45 |
|
|
|
|
| 31 |
# Custom ResNet-18 with integrated Dropout Layers
|
| 32 |
|
| 33 |
This is a **custom ResNet-18** ONNX model implemented in **PyTorch** with integrated **Dropout** layers.
|
|
|
|
| 34 |
It was trained on the **CIFAR-10** dataset for image classification tasks.
|
|
|
|
| 35 |
The model has been exported using **opset version 15** and is fully compatible with the **Aidge** platform.
|
| 36 |
|
| 37 |
## Details
|
| 38 |
|
| 39 |
+
- **Architecture**: Customized ResNet-18 with integrated Dropout layers
|
| 40 |
+
- **Trained on**: CIFAR-10 (60,000 32x32 color images, 10 classes)
|
| 41 |
+
- **Image Preprocessing**: Images were resized to `128×128`
|
| 42 |
+
- **Data Normalization**: `mean = [0.4914, 0.4822, 0.4465]`, `std = [0.2023, 0.1994, 0.2010]`
|
| 43 |
+
- **Dropout Probability**: 0.3
|
| 44 |
- **ONNX opset version**: 15
|
| 45 |
- **Conversion tool**: PyTorch → ONNX
|
| 46 |
|