svmtrain compared to fitcsvm
조회 수: 1 (최근 30일)
이전 댓글 표시
In the previous depreciated "svmtrain" function, The function will stop and return "No convergence error" if it's couldn't train the svm successfully after certain number of iteration.
However, I notice in the newer "fitcsvm", it returns without any error message, even if no convergence reached. Is there is away to force "fitcsvm" to only return if svm successfully trained, otherwise through an error. Just like "svmtrain".
댓글 수: 0
채택된 답변
Ilya
2015년 7월 7일
Check the ConvergenceInfo.Converged property of the returned object to see if optimization converged.
This behavior of fitcsvm is an improvement over svmtrain. First, although optimization does not converge, the model may be still accurate and you can use it. Second, you can use the resume method of the returned object to continue optimization for more iterations. Throwing an error would strip you of both possibilities.
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!