Too Many I/Ps
古いコメントを表示
hello,
My code is -
net=googlenet;
analyzeNetwork(net)
this is returning an error saying
too many input arguments.
And the same error is displayed when I am creating my custom network and using
net=trainNetwork(datastore,layers,options);
Please Help.
Thank You
22 件のコメント
Ameer Hamza
2020 年 10 月 21 日
Can you show the output of
which trainNetwork
REN Jain
2020 年 10 月 21 日
Ameer Hamza
2020 年 10 月 21 日
編集済み: Ameer Hamza
2020 年 10 月 22 日
What about
which analyzeNetwork
can you paste complete error message? Which MATLAB release are you using?
REN Jain
2020 年 10 月 21 日
REN Jain
2020 年 10 月 21 日
REN Jain
2020 年 10 月 21 日
Ameer Hamza
2020 年 10 月 21 日
It seems that the file uigridlayout.m has somehow got edited. Can you run the command
edit uigridlayout.m
and check if first two lines looks like this
function gridComponent = uigridlayout(varargin)
%UIGRIDLAYOUT Create a grid layout container
REN Jain
2020 年 10 月 21 日
Ameer Hamza
2020 年 10 月 22 日
First run the following line in command window
dbstop if error
and then re-run code. When the error occurs, the MATLAB execution will halt inside a file, can you tell what is the name of that file?
REN Jain
2020 年 10 月 22 日
REN Jain
2020 年 10 月 22 日
REN Jain
2020 年 10 月 22 日
Ameer Hamza
2020 年 10 月 22 日
I suggest you reinstall MATLAB completely. Deletes the current files and then reinstall.
REN Jain
2020 年 10 月 22 日
REN Jain
2020 年 10 月 22 日
Walter Roberson
2020 年 10 月 22 日
dbstop if caught error
and run and you should be able to see the problem line. When it stops check
which -all uigridlayout
as you might not be getting the public version
REN Jain
2020 年 10 月 23 日
Walter Roberson
2020 年 10 月 23 日
Okay, we are getting somewhere. Show
which -all replace
I suspect you will find that you have your own replace.m or a third-party toolbox that has replace.m
Ameer Hamza
2020 年 10 月 23 日
Ah!! This must be it. I didn't realize there is also a
dbstop if caught error
REN Jain
2020 年 10 月 23 日
Ameer Hamza
2020 年 10 月 23 日
Exactly as suspected!!! You have a file replace.m at
E:\REN\Matlab files\replace.m
which is shadowing the built-in replace function. Change the name of your file to something else.
REN Jain
2020 年 10 月 24 日
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





