File size: 191 Bytes
82ea528 |
1 2 3 4 5 6 7 |
import torch
class FunctionAdaCoF(torch.autograd.Function):
# end
@staticmethod
def forward(ctx, input, weight, offset_i, offset_j, dilation):
raise NotImplementedError()
|