49 Downloads
Updated 16 Sep 2020
VGG-16 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) by the Visual Geometry Group at University of Oxford (http://www.robots.ox.ac.uk/~vgg/research/very_deep/).
The model has 16 layers and can classify images into 1000 object categories (e.g. keyboard, mouse, coffee mug, pencil).
Opening the vgg16.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 R2017a and beyond.
Usage Example:
% Load the trained model
net = vgg16()
% See details of the architecture
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 VGG-16
label = classify(net, I);
% Show the image and the classification results
figure;
imshow(I)
text(10, 20, char(label),'Color','white')
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
unable to download .... how can I fix it ?
エラー: vgg16>iTripwireImageNetModel (行 89)
data = load(matfile);
エラー: vgg16 (行 65)
net = iTripwireImageNetModel();
Unable to download the third party!
any solution plz
Unable to download the third party licence
Download and installation is now available. Maybe there was a problem with the 3rd party licence. (I am using Windows 10, 64bit, R2019a ver. fyi)
cannot download the third application...seems like a common problem.
I cannot download this model... and don't know what the problem is.
安装的时候一直转圈圈啊,怎么弄?
download failed
show reason—— cannot download the third application,
WHO CAN GIVE SOME ADVICE?
THANKS
me too
I have tried many times but failed to install it successfully. Can someone help me
Unable to download Third-Party Package(s) on 2018b.
Hi Taimoor, we are sorry it is not working for you. Are you trying to access the file from the Add-Ons menu? Did you try downloading it from this File Exchange location and then installing it?
In MATLAB 2018b, it says that this add-on is not supported on my platform. Why is that?
It is a perfectly tool to do Deep learning!
I get 41 layers !
*****
So when I run the command: label = classify(net, I);
I get the error message: Can't reload '/Applications/MATLAB_R2017a.app/bin/maci64/libmwgpu.dylib'
My Matlab is up to date, and the network itself loads fine, does anyone know what this is and how to fix it?
Is there an update version that can work on a single GPU when training?
The VGG16 may need about 14 GB for a batch size of 128.
However, it only has about 8 to 12 GB memory size on a single GPU.
It runs out of memory when training. Any solution? Thank you.