MCPcopy
hub / github.com/hzwer/ECCV2022-RIFE / conv

Function conv

model/IFNet_2R.py:13–18  ·  view source on GitHub ↗
(in_planes, out_planes, kernel_size=3, stride=1, padding=1, dilation=1)

Source from the content-addressed store, hash-verified

11 )
12
13def conv(in_planes, out_planes, kernel_size=3, stride=1, padding=1, dilation=1):
14 return nn.Sequential(
15 nn.Conv2d(in_planes, out_planes, kernel_size=kernel_size, stride=stride,
16 padding=padding, dilation=dilation, bias=True),
17 nn.PReLU(out_planes)
18 )
19
20class IFBlock(nn.Module):
21 def __init__(self, in_planes, c=64):

Callers 1

__init__Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected