We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using this code to predicted labels . %% load load cnn load test_x %% test net = cnnff(cnn,test_x); [~, h] = max(net.o); disp(h);
got this errors
Error in cnnff (line 12) z = zeros(size(net.layers{l - 1}.a{1}) - [net.layers{l}.kernelsize - 1 net.layers{l}.kernelsize - 1 0]); how fix this erorrs
The text was updated successfully, but these errors were encountered:
refer to #167
Sorry, something went wrong.
No branches or pull requests
using this code to predicted labels .
%% load
load cnn
load test_x
%% test
net = cnnff(cnn,test_x);
[~, h] = max(net.o);
disp(h);
got this errors
Error in cnnff (line 12)
z = zeros(size(net.layers{l - 1}.a{1}) - [net.layers{l}.kernelsize - 1 net.layers{l}.kernelsize - 1 0]);
how fix this erorrs
The text was updated successfully, but these errors were encountered: