Deep Learning Toolbox Model for AlexNet Network

Pretrained AlexNet network model for image classification

49,4K descargas

Actualizada2022年3月9日

nota del编辑器:Popular File2017201820192020

该文件被选为Matlab CentralPick of the Week

AlexNet is a pretrained Convolutional Neural Network (CNN) that has been trained on approximately 1.2 million images from the ImageNet Dataset (http://image-net.org/index). The model has 23 layers and can classify images into 1000 object categories (e.g. keyboard, mouse, coffee mug, pencil).
Opening the alexnet.mlpkginstall file from your operating system or from within MATLAB will initiate the installation process for the release you have.
This mlpkginstall file is functional for R2016b and beyond.
Usage Example:
% Access the trained model
net = alexnet
%查看架构的详细信息
net.layers
% Read the image to classify
I = imread('peppers.png');
% Adjust size of the image
sz = net.Layers(1).InputSize
I = I(1:sz(1),1:sz(2),1:sz(3));
% Classify the image using AlexNet
label = classify(net, I)
% Show the image and the classification results
figure
imshow(I)
text(10,20,char(label),'Color','white')