Unrecognized function or variable 'importNetworkFromTensorFlow'.
Show older comments
if ~exist('model2a','dir')
unzip('model2a.zip')
end
modelFolder = './model2a';
net = importNetworkFromTensorFlow(modelFolder)
I ran the following above and got the error output mentioned above. Is there a way to resolve this? I checked that i have the add on installed and i even move to the main path where this add on is installed
Accepted Answer
More Answers (1)
Matt J
on 18 Jan 2024
0 votes
You haven't filled in the form with your Matlab release, but I'm guessing you have a version that predates that command.
2 Comments
Bryce
on 18 Jan 2024
Matt J
on 19 Jan 2024
As Steve mentions, that's not available in R2022b, but maybe you can use the earlier version importTensorFlowNetwork instead.
Categories
Find more on Deep Learning Toolbox 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!