ftianRF
Results
1
comments of
ftianRF
@aallahyar Yes. Here I add an example for more readers: ``` import torch import torch.nn as nn class NetResDeep(nn.Module): def __init__(self, n_chans1=32, n_blocks=10): super().__init__() self.n_chans1 = n_chans1 self.conv1 = nn.Conv2d(3,...