st-resnet
st-resnet copied to clipboard
Undefined function or variable 'vl_colsubset'
https://github.com/feichtenhofer/st-resnet/blob/8b4f28431b5abe881c3b5192c309ac7a303b5c9d/cnn_get_im_flow_batch.m#L87
I got an error while train:
Undefined function or variable 'vl_colsubset'.
I have fix the problem by using vlfeat toolbox, http://www.vlfeat.org/index.html, vl_colsubset is a function of this toolbox.
hi @gyguo , can you give me the detail step on how you implement vlfeat toolbox. I have a problem like you and I think I have vlfeat toolbox on my computer.
Thank you.
@sudonto After download and install the vlfeat toolbox under the st-resnet directory, I add run(fullfile(fileparts(mfilename('fullpath')), ... 'vlfeat','toolbox', 'vl_setup.m')) ;
to the STMulNet.m before runing it
@gyguo solved, thank you!