@@ -39,14 +39,14 @@ class plq_Ridge_Classifier(plqERM_Ridge, ClassifierMixin):
3939 C : float, default=1.0
4040 Inverse regularization strength.
4141
42- U, V, Tau, S, T : ndarray, default empty
42+ _U, _V, _Tau, _S, _T : ndarray, default empty
4343 Parameters for the PLQ representation of the loss function.
4444 Typically built internally by helper functions.
4545
46- A : ndarray of shape (K, n_features), default empty
46+ _A : ndarray of shape (K, n_features), default empty
4747 Linear-constraint coefficient matrix.
4848
49- b : ndarray of shape (K,), default empty
49+ _b : ndarray of shape (K,), default empty
5050 Linear-constraint intercept vector.
5151
5252 max_iter : int, default=1000
@@ -297,9 +297,9 @@ class plq_Ridge_Regressor(plqERM_Ridge, RegressorMixin):
297297 since you index sensitive columns by ``sen_idx`` on the *original* features, indices stay valid.
298298 C : float, default=1.0
299299 Regularization parameter (absorbed by ReHLine parameters inside the solver).
300- U, V, Tau, S, T : ndarray, default empty
300+ _U, _V, _Tau, _S, _T : ndarray, default empty
301301 Advanced PLQ parameters for the underlying ReHLine formulation (usually left as defaults).
302- A, b : ndarray, default empty
302+ _A, _b : ndarray, default empty
303303 Optional linear constraint matrices (used only if ``constraint`` contains ``{'name': 'custom'}``).
304304 (Your `_make_constraint_rehline_param` is responsible for validating their shapes.)
305305 max_iter : int, default=1000
0 commit comments