Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions solvers/pgd_safe_screening.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ class Solver(BaseSolver):
name = "PGD_safe_screening"
sampling_strategy = "iteration"
install_cmd = "conda"
requirements = ["pip:git+https://github.com/c-elvira/slopescreening"]
# TODO when benchopt 1.7 is released, update to
# "pip::git+https://github.com/c-elvira/slopescreening"
requirements = ["pip::git+https://github.com/c-elvira/slopescreening"]

references = [
"C. Elvira and C. Herzet, “Safe rules for the identification of zeros in ",
Expand Down
4 changes: 1 addition & 3 deletions solvers/slope_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ class Solver(BaseSolver):
name = "SlopePath"
sampling_strategy = "iteration"
install_cmd = "conda"
requirements = ["pip:git+https://github.com/jolars/slope-path"]
# TODO when benchopt 1.7 is released, update to
# "pip::git..."
requirements = ["pip::git+https://github.com/jolars/slope-path"]

references = [
"Dupuis, X., & Tardivel, P. (2024). The solution path of SLOPE. "
Expand Down
Loading