How can I use the example Transfer Learning Using Alexnet with Vgg16?

조회 수: 4 (최근 30일)
I tried to use 'Transfer Learning Using AlexNet' with Vgg16 but it failed to start the Training iterations. How can I use this example with Vgg16?
[netTransfer, info] = trainNetwork(augimdsTrain,layers,options);
Error using trainNetwork (line 150) GPU out of memory. Try reducing 'MiniBatchSize' using the trainingOptions function.
*Error in TL_CM_V3_Test_IM_VGG16 (line 68) [netTransfer, info] = trainNetwork(augimdsTrain,layers,options);
Caused by: Error using .* Out of memory on device. To view more detail about available memory on the GPU, use 'gpuDevice()'. If the problem persists, reset the GPU by calling 'gpuDevice(1)'.*
My gpu is CUDADevice with properties:
Name: 'GeForce 930MX'
Index: 1
ComputeCapability: '5.0'

채택된 답변

Johannes Bergstrom
Johannes Bergstrom 2018년 11월 12일
Vgg16 requires a lot of GPU memory and you don't have very much of it. The error message says "Try reducing 'MiniBatchSize' using the trainingOptions function." Did you try that? Otherwise, I would recommend using a network that uses less memory, for example, GoogLeNet or SqueezeNet.
You can use any pretriained network available in MATLAB for transfer learning in this example: https://www.mathworks.com/help/deeplearning/examples/train-deep-learning-network-to-classify-new-images.html
For a list of pretrained networks, see https://www.mathworks.com/help/deeplearning/ug/pretrained-convolutional-neural-networks.html
  댓글 수: 1
Claudio Mor
Claudio Mor 2018년 11월 12일
Thank you! I tried setting the minimum 'MiniBatchSize'=1 but without success. Unfortunately, I need to use Vgg16 or a custom (shallower) miniVgg for my project; I'm going to use a Nvidia Gtx1080 8Gb, can this be enough?

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

xu lu
xu lu 2019년 1월 4일
I have tried many times but failed to install Vgg16 successfully. The installation always stops when the download reaches 18%.Can you help me?

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by