Image Classification
timm
PDE
ConvNet
liuyao commited on
Commit
17199e4
1 Parent(s): d46ec21

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -20,7 +20,7 @@ This modelcard aims to be a base template for new models. It has been generated
20
 
21
  ### Model Description
22
 
23
- Instead of the bottleneck of ResNet50 which consists of 1x1, 3x3, 1x1 in succession, we instead of make the 1x1, split into two equal halves and multiply them, then apply a 3x3 (depthwise), and a 1x1. All without activation functions except at the end of the block, where we apply a *radial activation function* that I call `hardball`.
24
 
25
 
26
 
 
20
 
21
  ### Model Description
22
 
23
+ Instead of the `bottleneck` block of ResNet50 which consists of 1x1, 3x3, 1x1 in succession, we instead do a 1x1, split into two equal halves and **multiply** them, then apply a 3x3 (depthwise), and a 1x1, all *without* activation functions except at the end of the block, where we apply a *radial activation function* that I call `hardball`.
24
 
25
 
26