when run net=googlenet get error
2 次查看(过去 30 天)
显示 更早的评论
>> net = googlenet;
Execution of script googlenet as a function is not supported:
D:\recycle101\googlenet.m
0 个评论
采纳的回答
Walter Roberson
2023-5-14
Folder D:\recycle101 is on your MATLAB path, and it contains a script D:\recycle101\googlenet.m -- a .m file that is not a function or classdef. However you are trying to invoke googlenet as a function, probably intending to access https://www.mathworks.com/help/deeplearning/ref/googlenet.html
You should rename D:\recycle101\googlenet.m to something else.
2 个评论
Walter Roberson
2023-5-14
It works for me in R2023a.
I notice you are using R2020b. You might need to update to a later version.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!