Closed jolars closed 2 years ago
Maybe the 200 x 300 case should be skipped altogether, I'm not sure.
I've dropped the n ~~ p case for now and but upped the number of features to 10000 in the p > n
case. I've decreased min(n, p)
to 200 to combat the very long running times that these simulations otherwise take. Finally I've also harmonized the number of signals to be 20.
"n_samples, n_features, n_signals": [
(10_000, 200, 20),
(200, 10_000, 20),
],
I'm merging this now because I think controlling the number of signals is a necessary change, but feel free to open an issue about this if you disagree with the other changes and we'll discuss them more.
This PR is tangent to https://github.com/benchopt/benchmark_lasso/pull/90 and based on discussions with @mathurinm.
Changes:
n_signals
parameter and make sure that the signal is sparse for the p > n cases