Error states that Deep Learning Toolbox is required even though license is purchased and toolbox is installed?
10 views (last 30 days)
Show older comments
Alexander Moody
on 2 Aug 2023
Commented: Image Analyst
on 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 Comments
Accepted Answer
Image Analyst
on 2 Aug 2023
Edited: Image Analyst
on 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 Comments
Image Analyst
on 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.
More Answers (0)
See Also
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!