maab05 commited on
Commit
05f2a72
·
verified ·
1 Parent(s): 0b5d0ca

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -11
README.md CHANGED
@@ -1,20 +1,37 @@
1
  ---
2
- base_model:
3
- - resnet-18
 
 
 
 
4
  pipeline_tag: image-classification
5
- license: cc
6
  datasets:
7
  - cifar10
8
- language:
9
- - en
10
  metrics:
11
  - accuracy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
- This model is designed to test the integration of a custom Dropout operator for the `Aidge platform` and to explore how predictive uncertainty varies between in-distribution (CIFAR-10) and out-of-distribution (GTSRB) samples. By analyzing the model’s predictive uncertainty across both datasets, we can evaluate how effectively the model distinguishes between familiar and unfamiliar inputs.
14
 
15
- ## Model Details
 
 
 
 
16
 
17
- - **Architecture**: Custom ResNet-18 with all convolutional and fully connected layers configured with `bias=True`
18
- - **Trained on**: CIFAR-10
19
- - **ONNX opset version**: 11
20
- - **Conversion tool**: PyTorch → ONNX
 
1
  ---
2
+ tags:
3
+ - onnx
4
+ - image-classification
5
+ - cifar10
6
+ - dropout
7
+ - aidge
8
  pipeline_tag: image-classification
 
9
  datasets:
10
  - cifar10
 
 
11
  metrics:
12
  - accuracy
13
+ model-index:
14
+ - name: Custom ResNet-18 with integrated Dropout layers
15
+ results:
16
+ - task:
17
+ type: image-classification
18
+ name: Image Classification
19
+ dataset:
20
+ name: CIFAR-10
21
+ type: cifar10
22
+ metrics:
23
+ - type: accuracy
24
+ value: 83.96%
25
+ language:
26
+ - en
27
+ base_model:
28
+ - resnet-18
29
  ---
 
30
 
31
+ # Custom ResNet-18 with Integrated Dropout
32
+
33
+ This is a **custom ResNet-18** model implemented in **PyTorch** with integrated **Dropout** layers.
34
+ It was trained on the **CIFAR-10** dataset for image classification tasks. The model has been exported to the **ONNX format** (opset version 15).
35
+ and is fully compatible with the **Aidge** platform.
36
 
37
+ ---