We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We cannot run a single solver of sklearn at a time. The following command does not work
benchopt run ./benchmark_logreg_l2 -s sklearn[lbfgs]
and returns
Usage: benchopt run [OPTIONS] BENCHMARK Error: Invalid value: Patterns ['sklearn[lbfgs]'] did not matched any solver. Available solvers are: - Lightning - sklearn[liblinear] - sklearn[newton-cg] - sklearn[lbfgs]
which looks contradictory.
The text was updated successfully, but these errors were encountered:
Merge pull request benchopt#4 from tomMoral/MTN_xfail_test_install
589ff29
MTN use new xfail functionality
I can no longer reproduce:
(base) ➜ logreg_l2 git:(main) benchopt run . -s sklearn\[lbfgs\] -d simulated BenchOpt is running Simulated[n_samples=200,n_features=500] |--L2 Logistic Regression[fit_intercept=False,lmbd=1.0] |----sklearn[lbfgs]: done
I was expecting -s sklearn[lbfgs] to fail because it expected -s sklearn[solver=lbfgs], but it seems that the first syntax works, probably due to:
-s sklearn[lbfgs]
-s sklearn[solver=lbfgs]
parameter_template = "{solver}"
is the sklearn solver. This feature is not documented. Should we keep it @tomMoral ?
Sorry, something went wrong.
No branches or pull requests
We cannot run a single solver of sklearn at a time. The following command does not work
and returns
Usage: benchopt run [OPTIONS] BENCHMARK Error: Invalid value: Patterns ['sklearn[lbfgs]'] did not matched any solver. Available solvers are: - Lightning - sklearn[liblinear] - sklearn[newton-cg] - sklearn[lbfgs]
which looks contradictory.
The text was updated successfully, but these errors were encountered: