MCPcopy
hub / github.com/JaidedAI/EasyOCR / conv3x3

Function conv3x3

easyocr/DBNet/backbones/resnet.py:25–28  ·  view source on GitHub ↗

3x3 convolution with padding

(in_planes, out_planes, stride=1)

Source from the content-addressed store, hash-verified

23
24
25def conv3x3(in_planes, out_planes, stride=1):
26 """3x3 convolution with padding"""
27 return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride,
28 padding=1, bias=False)
29
30
31class BasicBlock(nn.Module):

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…