You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to run the training of matconvnet on Pascal voc.
I just compiled and tested matconvnet then downloaded your code. Adapted the paths to matconvnet and data but the execution of fcnTrain.m keeps on failing with this error message:
Error using '
Transpose on ND array is not defined. Use PERMUTE instead.
Error using '
Transpose on ND array is not defined. Use PERMUTE instead.
Error in vl_argparse (line 77)
values = struct2cell(args{ai})' ;
Error in cnn_train_dag (line 34)
opts = vl_argparse(opts, varargin) ;
Error in fcnTrain (line 99)
info = cnn_train_dag(net, imdb, getBatchWrapper(bopts), ...
It seems like in vl_argparse it tries to transpose an empty 0x0 matrix. I'm a little confused since there is quite a lot of argument parsing. Do you have any idea how to fix this?
Do I need to pass fcnTrain with some special argument? (eg Database-Name or Model Name?)
Thanks in advance
The text was updated successfully, but these errors were encountered:
I'm trying to run the training of matconvnet on Pascal voc.
I just compiled and tested matconvnet then downloaded your code. Adapted the paths to
matconvnet
anddata
but the execution offcnTrain.m
keeps on failing with this error message:It seems like in
vl_argparse
it tries to transpose an empty 0x0 matrix. I'm a little confused since there is quite a lot of argument parsing. Do you have any idea how to fix this?Do I need to pass
fcnTrain
with some special argument? (eg Database-Name or Model Name?)Thanks in advance
The text was updated successfully, but these errors were encountered: