(x, y)
| 178 | @pytest.mark.parametrize("lil_container", LIL_CONTAINERS) |
| 179 | def test_svc_with_custom_kernel(lil_container): |
| 180 | def kfunc(x, y): |
| 181 | return safe_sparse_dot(x, y.T) |
| 182 | |
| 183 | X_sp = lil_container(X) |
| 184 | clf_lin = svm.SVC(kernel="linear").fit(X_sp, Y) |
nothing calls this directly
no test coverage detected
searching dependent graphs…