baifanysu / deep-learning-faces

Automatically exported from code.google.com/p/deep-learning-faces
GNU General Public License v3.0
0 stars 0 forks source link

Invalid MEX-file error parameters. #1

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Invalid MEX-file 
'D:\DEEPLearning\2013\SVM_SOFTMAX\matlab\mexcuConvNNoo.mexw64': error 
parameters.
Error in myclassify_conv_nn_softmax (line 174)
        [~, model.theta] = mexcuConvNNoo( single(ww), params, model.callback_name);
        in code write like this:
#define NARGIN 3
#define IN_W pRhs[0]
#define IN_params pRhs[1]
#define IN_callback  pRhs[2]

#define NARGOUT 1
#define OUT_f pLhs[0]
#define OUT_W pLhs[1]
#define OUT_dW pLhs[1]
and which is different from the beginning explanation:function [f (W or dW)] = 
mexcuConvNNoo( W, params, Dim, Callback).

Original issue reported on code.google.com by robotzh...@gmail.com on 12 Aug 2013 at 8:25