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
1 change: 0 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ branch = True
source = celer
include = */celer/*
omit = */setup.py
*/celer/plot_utils.py

[report]
exclude_lines =
Expand Down
30 changes: 0 additions & 30 deletions celer/plot_utils.py

This file was deleted.

2 changes: 0 additions & 2 deletions examples/plot_group_lasso.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@

from celer import GroupLassoCV, LassoCV
from celer.datasets import make_correlated_data
from celer.plot_utils import configure_plt

print(__doc__)
configure_plt(fontsize=16)

# Generating X, y, and true regression coefs with 4 groups of 5 non-zero values

Expand Down
2 changes: 0 additions & 2 deletions examples/plot_lasso_cv.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@
from sklearn.model_selection import KFold

from celer import LassoCV
from celer.plot_utils import configure_plt

print(__doc__)
configure_plt()

print("Loading data...")
dataset = fetch_openml("leukemia")
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "celer"
dependencies =[
'seaborn>=0.7', 'matplotlib>=2.0.0', 'libsvmdata>=0.3',
'scikit-learn>=1.0', 'xarray', 'download', 'tqdm'
'libsvmdata>=0.3', 'scikit-learn>=1.0', 'xarray', 'download', 'tqdm'
]
description = "A fast algorithm with dual extrapolation for sparse problems"
authors = [
Expand All @@ -29,6 +28,6 @@ repository = "https://github.com/mathurinm/celer.git"

[project.optional-dependencies]
doc = [
"numpydoc", "pandas", "pillow",
"numpydoc", "pandas", "pillow", "matplotlib",
"furo", "sphinx-copybutton", "sphinx-gallery"
]
]
Loading