Image Classification
TF-Keras
martinsbruveris commited on
Commit
2c50832
1 Parent(s): 3d8fc7e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md CHANGED
@@ -1,3 +1,31 @@
1
  ---
 
 
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - image-classification
4
  license: apache-2.0
5
  ---
6
+ # Model card for resnet18
7
+
8
+ A ResNet-B image classification model.
9
+
10
+ This model features:
11
+ * ReLU activations
12
+ * Single layer 7x7 convolution with pooling
13
+ * 1x1 convolution shortcut downsample
14
+
15
+ Trained on ImageNet-1k in `timm` using recipe template described below.
16
+
17
+ Recipe details:
18
+ * ResNet Strikes Back `A1` recipe
19
+ * LAMB optimizer with BCE loss
20
+ * Cosine LR schedule with warmup
21
+
22
+ ## Model Details
23
+ - **Model Type:** Image classification / feature backbone
24
+ - **Model Stats:**
25
+ - Params (M): 11.7
26
+ - GMACs: 1.8
27
+ - Activations (M): 2.5
28
+ - Image size: train = 224 x 224, test = 288 x 288
29
+ - **Papers:**
30
+ - ResNet strikes back: An improved training procedure in timm: https://arxiv.org/abs/2110.00476
31
+ - Deep Residual Learning for Image Recognition: https://arxiv.org/abs/1512.03385