How can you use CPU with the Parallel Computing Toolbox?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Sergi Torres
am 25 Mai 2017
Kommentiert: dhikra H
am 22 Nov. 2017
I need to run a Convolutional Neural Networks code, and this requires the PCT but I don't have a NVIDIA GPU. There used to be a parameter in trainingOptions named 'ExecutionEnvironment' where you could choose 'cpu' instead of 'gpu' but it seems to be obsolete.
Is there any other way??
opts = trainingOptions('sgdm', ...
'Momentum', 0.9, ...
'InitialLearnRate', 0.001, ...
'LearnRateSchedule', 'piecewise', ...
'LearnRateDropFactor', 0.1, ...
'LearnRateDropPeriod', 8, ...
'L2Regularization', 0.004, ...
'MaxEpochs', 40, ...
'MiniBatchSize', 128, ...
'Verbose', true);
cifar10Net = trainNetwork(X_train, Labels_train, layers, opts);
0 Kommentare
Akzeptierte Antwort
mizuki
am 25 Mai 2017
CNN on CPU and 'ExecutionEnvironment' option are introduced in R2017a. If you are using R2016b or previous versions, you need GPU to run it or upgrade MATLAB.
1 Kommentar
dhikra H
am 22 Nov. 2017
hello, I use CNN on CPU with matlab 2017b and when i put parallel options in 'ExecutionEnvironment' it display an error indicat that The CUDA runtime failed to initialize correctly. This can occur with some older CUDA drivers. Thanks for help
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Data Workflows finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!