Skip to content

Commit

Permalink
docs: switch to furo theme
Browse files Browse the repository at this point in the history
  • Loading branch information
jolars committed Dec 11, 2023
1 parent b94c9b1 commit 6006fd9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "sphinx_rtd_theme"
html_theme = "furo"
html_static_path = ["_static"]

# -- Options for napoleon extension ------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Homepage = "https://jolars.github.io/sortedl1/"
Source = "https://github.com/jolars/sortedl1"

[project.optional-dependencies]
docs = ["sphinx", "sphinx_rtd_theme"]
docs = ["sphinx", "furo"]

[tool.scikit-build]
build-dir = "build/{wheel_tag}"
Expand Down
6 changes: 6 additions & 0 deletions sortedl1/estimators.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ class Slope(BaseEstimator, RegressorMixin):
The estimated regression coefficients in a dense format.
lambda_ : ndarray
The lambda parameter vector for the Sorted L1 Penalty.
lambda_ : float
The value of alpha used.
n_iter_ : int
The total number of iterations from the inner loop.
n_features_in_ : int
The number of features seen by the estimator.
"""

def __init__(
Expand Down

0 comments on commit 6006fd9

Please sign in to comment.