Image Classification
timm
PDE
ConvNet
liuyao commited on
Commit
c30f80f
1 Parent(s): cb4c7a1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -42,7 +42,7 @@ FAQ (as the author imagines):
42
  Instead of the `bottleneck` block of ResNet50 which consists of 1x1, 3x3, 1x1 in succession, this simplest version of QLNet does a 1x1, splits into two equal halves and **multiplies** them, then applies a 3x3 (depthwise), and a 1x1, *all without activation functions* except at the end of the block, where a "radial" activation function that we call `hardball` is applied.
43
 
44
  ```python
45
- class QLNet(nn.Module):
46
  ...
47
 
48
  def forward(self, x):
 
42
  Instead of the `bottleneck` block of ResNet50 which consists of 1x1, 3x3, 1x1 in succession, this simplest version of QLNet does a 1x1, splits into two equal halves and **multiplies** them, then applies a 3x3 (depthwise), and a 1x1, *all without activation functions* except at the end of the block, where a "radial" activation function that we call `hardball` is applied.
43
 
44
  ```python
45
+ class QLBlock(nn.Module):
46
  ...
47
 
48
  def forward(self, x):