deep-residual-networks Questions
2
Solved
So, I've read about half the original ResNet paper, and am trying to figure out how to make my version for tabular data.
I've read a few blog posts on how it works in PyTorch, and I see heavy use o...
Fanfaron asked 6/10, 2020 at 16:8
4
Residual networks are always built with convolutional layers. I have never seen residual networks with only fully connected layers. Does it work to build a residual network with only fully connecte...
Kronick asked 26/5, 2020 at 14:0
2
Solved
The Pytorch implementation of ResNet-18.
has the following structure, which appears to be 54 layers, not 18.
So why is it called "18"? How many layers does it actually have?
ResNet (
(c...
Festive asked 3/4, 2017 at 2:43
3
Solved
I am reading through Residual learning, and I have a question.
What is "linear projection" mentioned in 3.2? Looks pretty simple once got this but could not get the idea...
Can some...
Drain asked 8/9, 2017 at 16:54
2
With the residual block in residual neural networks, is the addition at the end of the block true element addition or is it concatenation?
For example, would addition([1, 2], [3, 4]) produce [1, 2...
Dullard asked 24/10, 2017 at 4:45
1
This line works fine
self.conv = nn.Conv2d(3, 64, kernel_size=3, stride=2, padding=1, bias=False)
I introduced ResNet18
self.conv = ResNet18()
**ResNet Class**
'''ResNet in PyTorch.
For Pre-ac...
Riannon asked 16/7, 2020 at 1:32
3
Solved
I am a deep learning and Tensorflow beginner and I am trying to implement the algorithm in this paper using Tensorflow. This paper uses Matconvnet+Matlab to implement it, and I am curious if Tensor...
Locally asked 22/11, 2017 at 10:0
1
Solved
I would like to calculate constant convolution like blurring or resampling and want it never change during training.
Can I initialize convolution kernel to constant and exclude it from training i...
Berkshire asked 15/7, 2017 at 22:27
1
© 2022 - 2024 — McMap. All rights reserved.