We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d9753 commit 3279206Copy full SHA for 3279206
examples/plot_pruning.py
@@ -75,6 +75,7 @@ def _fastcan_pruning(
75
X.T, atoms.T, n_samples_to_select, batch_size=batch_size, tol=1e-9, verbose=0
76
)
77
pruned_lr = LogisticRegression(max_iter=110).fit(X[ids_fastcan], y[ids_fastcan])
78
+ print(atoms[0], ids_fastcan[:10])
79
return pruned_lr.coef_, pruned_lr.intercept_
80
81
0 commit comments