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
Migrating REDSVM to ORCA-Python i detected a memory leak during the execution of the algorithm. The problem looks like is this part of the svm_free_model_content function:
Migrating REDSVM to ORCA-Python i detected a memory leak during the execution of the algorithm. The problem looks like is this part of the svm_free_model_content function:
orca/src/Algorithms/libsvm-rank-2.81/svm.cpp
Lines 3416 to 3417 in bd9d682
This code only free the memory of the first SV but not the rest of them. Changing that to:
Solved the problem for me.
The text was updated successfully, but these errors were encountered: