Image Classification
TF-Keras
File size: 843 Bytes
3d8fc7e
2c50832
 
3d8fc7e
 
2c50832
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
tags:
- image-classification
license: apache-2.0
---
# Model card for resnet18

A ResNet-B image classification model.

This model features:
 * ReLU activations
 * Single layer 7x7 convolution with pooling
 * 1x1 convolution shortcut downsample

Trained on ImageNet-1k in `timm` using recipe template described below.

Recipe details:
 * ResNet Strikes Back `A1` recipe
 * LAMB optimizer with BCE loss
 * Cosine LR schedule with warmup

## Model Details
- **Model Type:** Image classification / feature backbone
- **Model Stats:**
  - Params (M): 11.7
  - GMACs: 1.8
  - Activations (M): 2.5
  - Image size: train = 224 x 224, test = 288 x 288
- **Papers:**
  - ResNet strikes back: An improved training procedure in timm: https://arxiv.org/abs/2110.00476
  - Deep Residual Learning for Image Recognition: https://arxiv.org/abs/1512.03385