Hallo, thank you for your all efforts.
Recently I met a problem for remBinFp function. I used my data with size 21000 and label with 11000. But something happened and the output model.index is 3, while in your demo it's 3. Therefore, binPlot func doesn't work.
Could you please take a look for me? I upload the data.mat in google drive. Thanks
%% RVM for classification
load('data.mat');
[model, llh] = rvmBinFp(X, y);
plot(llh);
y = rvmBinPred(model,X)+1;
figure;
binPlot(model,X,y);
---------------------
Index exceeds matrix dimensions.
Error in binPlot (line 25)
y = w(1)*x1+w(2)*x2+w(3);
Hallo, thank you for your all efforts.
Recently I met a problem for
remBinFpfunction. I used my data with size 21000 and label with 11000. But something happened and the outputmodel.indexis 3, while in your demo it's 3. Therefore,binPlotfunc doesn't work.Could you please take a look for me? I upload the data.mat in google drive. Thanks