Error states that Deep Learning Toolbox is required even though license is purchased and toolbox is installed?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Alexander Moody
am 2 Aug. 2023
Kommentiert: Image Analyst
am 3 Aug. 2023
I have the same version and packages installed on two different computers. One computer runs the neural network code just fine. The other computer does not.
I am trying to create a datastore that requires the Deep Learning Toolbox which is installed (checked the add-on manager). However, it says the following:
patchds = randomPatchExtractionDatastore(volds,pxds,patchSize, ...
PatchesPerImage=patchPerImage);
Error using randomPatchExtractionDatastore
'MiniBatchable' requires Deep Learning Toolbox.
I tried restarting my computer, and reinstalling MATLAB. Neither jogged its memory that the Deep Learning Toolbox is installed. I also tried using the Deep Network Designer (both by code in cmd and by clicking on the app), and those gave the same error with different text:
Error using deepNetworkDesigner
Invalid default value for property 'Network' in class 'deepapp.internal.editor.import.NoArgsCallStrategy':
layerGraph requires a Neural_Network_Toolbox license.
I thought the Neural Network Toolbox was deprecated?
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 2 Aug. 2023
Bearbeitet: Image Analyst
am 2 Aug. 2023
Evidently you don't have a license for it even though it may be installed. If you type "ver" in the command window, do you see it listed? If so, what does this show:
hasLicenseForToolbox = license('test', 'Neural_Network_Toolbox'); % Check for Deep Learning Toolbox.
On the computer it does not work on, do you have a license that you need to check out of a shared license pool? Perhaps others in the license group checked out all the licenses and you have to wait until someone quits MATLAB.
The "Neural Network Toolbox" is still around but it's is in the process of being renamed to the "Deep Learning Toolbox," so it might go by both names for a while, like in the license function I gave above..
2 Kommentare
Image Analyst
am 3 Aug. 2023
The sure-fire and fastest way to success is to do exactly what it says to do in the FAQ:
That will definitely work.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!