Questions tagged [alex-net]
13 questions
5
votes
4 answers
AlexNet CNN how can it be applied to my case?
I'm working on my last year project where I'm given digitized WSI (Whole Slide Images), though they're fairly small around 1390x1040 size (which is unusual). These images are of cases of Glioblastoma Multiforme (brain cancer) which is stained with…
Vocaloidas
- 151
- 1
4
votes
3 answers
Number of Fully connected layers in standard CNNs
I have a question targeting some basics of CNN. I came across various CNN networks like AlexNet, GoogLeNet and LeNet.
I read at a lot of places that AlexNet has 3 Fully Connected layers with 4096, 4096, 1000 layers each. The layer containing 1000…
Abhishek Saxena
- 43
- 1
- 3
3
votes
1 answer
Where are the 60 million params of AlexNet?
On the abstract of the AlexNet paper, they claimed to have 60 million parameters:
The neural network, which has 60 million parameters and 650,000 neurons, consists
of five convolutional layers, some of which are followed by max-pooling layers,
and…
Begoodpy
- 223
- 1
- 5
3
votes
0 answers
AlexNet Research Paper VS PytTorch and Tensorflow implementation
I'm making my way through Deep Learning research papers, starting with AlexNet, and I found differences in the implementation of PyTorch and Tensorflow that I can't explain.
In the research paper, they define the model architecture with:
The first…
Begoodpy
- 223
- 1
- 5
3
votes
2 answers
What does images per second mean when benchmarking Deep Learning GPU?
I've been reviewing performance of several NVIDIA GPU's and I see that typically results are presented in terms of "images per second" that can be processed. Experiments are typically being performed on classical network architectures such as Alex…
Javierfdr
- 1,490
- 12
- 14
2
votes
1 answer
How to resize MNIST images to fit AlexNet model
I am using the keras API to load in the MNIST dataset. My problem is I need to use AlexNet as my algorithm. Understanding the AlexNet model, I require to start with 277x277 images but the MINST dataset has 28x28. How can I reshape the numpy array so…
CrocusMac
- 21
- 1
- 2
2
votes
1 answer
How does R-CNN and AlexNet compare?
I know AlexNet does object classification in images [categories] and R-CNN does object localization [category and bounding box].
How does R-CNN and AlexNet compare?
Are they used for the same purpose or R-CNN does more? Does R-CNN use Alexnet as a…
Fakrudeen
- 123
- 4
1
vote
1 answer
Adapting ZFNet on 2244x224 image using a filter 7X7
I am building a model based on ZFNet in Tensorflow 2.0. I am using the Petal images dataset. The images are of size 224x244x3.
So my question is when implementing the first layer (conv2d) with filter size = 7 and a stride of 3 and padding of 0. I am…
Dawood Aijaz
- 13
- 2
1
vote
1 answer
where can I get access to AlexNet?
A lot of websites on CNN for large datasets of images talk about starting with the pretrained model for 1.2 million images in 1000 categories available via AlexNet / Imagenet. These sites seem to imply that this dataset is freely available, but I'm…
David Ash
- 11
- 1
1
vote
0 answers
Why is the GoogLeNet retrained model size less compared to others?
I have some questions if someone can answer me or guide me articles to understand them. I investigated different pre-trained model i.e. AlexNet, VGG, GoogLeNet, InceptionV3 and ResNet. I have retrained these models(In MATLAB2018b using single CPU)…
Andrew
- 11
- 1
1
vote
0 answers
Why does my training loss oscillate while training the final layer of AlexNet with pre-trained weights?
I am working on texture classification and based on previous works, I am trying to modify the final layer of AlexNET to have 20 classes, and train only that layer for my multi class classification problem.
I am using Tensorflow-GPU on an NVIDIA GTX…
RSSharma
- 19
- 1
1
vote
1 answer
How does Alexnet flatten operation go from 6x6x256 tensor to 4096 vector
In the Alexnet model, after the encoder steps are completed, you end up with a 6x6x256 tensor. Now this needs to be flattened before we go to the ANN part of the network. However, the flattening results in a length of 4096. How did the size of the…
simplename
- 111
- 2
0
votes
2 answers
Don't know how to preprocess my dataset for image classification
I'm trying to do image classification using CNN. The exact model isn't important but I decided to try use AlexNet and I'm getting abysmal accuracy.
I believe the issue might be with my data preprocessing. My dataset directory contains a Training…