@Leona-LYT
When using plq_Ridge_Classifier with multi_class='ovo', the fitted coefficients (coef_) diverge significantly from those produced by sklearn's OneVsOneClassifier(LinearSVC(...)), even though both classifiers achieve identical test accuracy. The maximum per-coefficient absolute difference reaches 4.24 (far above the expected tolerance of 1e-3), indicating a numerical or algorithmic discrepancy in the OvO subproblem setup.
Steps to Reproduce
python tests/_test_multiclass.py
Maybe there is some post-processing on solution for LinearSVC; please fix/figure it.