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 encountered an "Index exceeds matrix dimensions" error while using the ORBoost function in my MATLAB code. I followed the instructions in orca_quick_install.md to run runtests_single in MATLAB 2017b on my MacBook, and the following errors occurred:
"
Index exceeds matrix dimensions.
Error in ORBoost/privpredict (line 123)
predicted = all(:,1);
Error in Algorithm/predict (line 80)
[projected, predicted] = privpredict(obj, test);
Error in ORBoost/privfit (line 84)
[projectedTrain, predictedTrain] = obj.predict(train.patterns);
Error in Algorithm/fit (line 65)
[projectedTrain, predictedTrain] = obj.privfit(train, param);
Error in Algorithm/fitpredict (line 33)
[mInf.projectedTrain, mInf.predictedTrain] = obj.fit(train, param);
Error in orboostTest (line 13)
info = algorithmObj.fitpredict(train, test);
Error in runtests_single (line 44)
eval(cmd(1
))
"
Any guidance on resolving this error would be greatly appreciated.
Thank you!
The text was updated successfully, but these errors were encountered:
I encountered an "Index exceeds matrix dimensions" error while using the ORBoost function in my MATLAB code. I followed the instructions in
orca_quick_install.md
to runruntests_single
in MATLAB 2017b on my MacBook, and the following errors occurred:"
Index exceeds matrix dimensions.
Error in ORBoost/privpredict (line 123)
predicted = all(:,1);
Error in Algorithm/predict (line 80)
[projected, predicted] = privpredict(obj, test);
Error in ORBoost/privfit (line 84)
[projectedTrain, predictedTrain] = obj.predict(train.patterns);
Error in Algorithm/fit (line 65)
[projectedTrain, predictedTrain] = obj.privfit(train, param);
Error in Algorithm/fitpredict (line 33)
[mInf.projectedTrain, mInf.predictedTrain] = obj.fit(train, param);
Error in orboostTest (line 13)
info = algorithmObj.fitpredict(train, test);
Error in runtests_single (line 44)
eval(cmd(1
))
"
Any guidance on resolving this error would be greatly appreciated.
Thank you!
The text was updated successfully, but these errors were encountered: