MCPcopy
hub / github.com/Rudrabha/Wav2Lip / conv3x3

Function conv3x3

face_detection/models.py:7–10  ·  view source on GitHub ↗

3x3 convolution with padding

(in_planes, out_planes, strd=1, padding=1, bias=False)

Source from the content-addressed store, hash-verified

5
6
7def conv3x3(in_planes, out_planes, strd=1, padding=1, bias=False):
8 "3x3 convolution with padding"
9 return nn.Conv2d(in_planes, out_planes, kernel_size=3,
10 stride=strd, padding=padding, bias=bias)
11
12
13class ConvBlock(nn.Module):

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected