Asahi678

Results 3 comments of Asahi678

` import torch import torch.nn as nn class model(nn.Module): def __init__(self, in_channel, out_channel): super(model, self).__init__() self.conv1 = nn.Conv2d(in_channel, 32, 3, 1) self.conv2 = nn.Conv2d(32, 32, 3, 2) self.tmp_conv = nn.Conv2d(3,...

![2021-09-06 21-42-54屏幕截图](https://user-images.githubusercontent.com/34291827/132226439-c0cba67a-a8c3-4d2b-b2ad-d52caaac8d23.png)

> > > I also encountered the same problem with my own dataset, how do you solve it? Actually, I haven't solved this problem until now. But I find pred...