Deep Learning ToolboxTM Model for Places365-GoogLeNet Network

Pretrained GoogLeNet network trained on Places365 data set for image classification

589 descargas

Actualizada9 Mar 2022

Place365GoogLeNet b是一个pretrained模型een trained on the Places365 data set and has the same underlying network architecture as GoogLeNet that was trained on the ImageNet data set. You can read in the network using

Syntax
net = googlenet
net = googlenet('Weights',weights)

net = googlenet('Weights',weights) returns a GoogLeNet network trained on either the ImageNet or Places365 data set.

If weights equals 'imagenet', then the network has weights trained on the ImageNet data set. If weights equals 'places365' then the network has weights trained on the Places365 data set.

Opening the place365googlenet.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 R2019a and beyond.

You read the network

Usage Example:

net = googlenet('Weights','places365');
im = imread('test.jpg');
sz = net.Layers(1).InputSize;
im = imresize(im,[sz(1) sz(2)]);
label = classify(net, im)

% Show the image and the classification results
figure
imshow(im)
text(10,20,char(label),'Color','white')

Please visit the documentation page to learn more://www.tianjin-qmedu.com/help/deeplearning/ref/googlenet.html

Compatibilidad con la versión de MATLAB
Se creó con R2019a
Compatible con la versión R2019a a la R2022a
Compatibilidad con las plataformas
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!