16 lines
270 B
Python
16 lines
270 B
Python
import torch
|
|
import torch.nn as nn
|
|
from ...utils import check_consistency
|
|
|
|
|
|
class SpectralConvBlock(nn.Module):
|
|
"""
|
|
Implementation of spectral convolution block.
|
|
"""
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
|
|
def forward(self, x):
|
|
pass |