Skip to content

Commit

Permalink
Merge pull request #20 from jeremiedb/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
jeremiedb authored Oct 5, 2023
2 parents 14d0dec + f910651 commit bd9abf7
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ makedocs(
pages=[
"Home" => "index.md",
"API" => "api.md",
"Internals" => "internals.md",
],
format=Documenter.HTML(
sidebar_sitename=true,
Expand Down
19 changes: 7 additions & 12 deletions docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,18 @@

```@docs
EvoLinearRegressor
EvoSplineRegressor
```

## Training & Inference
## Training

```@docs
EvoLinear.fit
EvoLinear.predict_linear
EvoLinear.predict_proj
```

## Evaluation metrics
## Metrics

```@docs
EvoLinear.mse
EvoLinear.mae
EvoLinear.logloss
EvoLinear.poisson_deviance
EvoLinear.gamma_deviance
EvoLinear.tweedie_deviance
```
```@autodocs
Modules = [EvoLinear.Metrics]
Order = [:type, :function, :constant]
```
4 changes: 2 additions & 2 deletions docs/src/assets/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#documenter .docs-sidebar{
/* background-color: #023572 */
background-color: white;
border-right: 2px solid darkgray;
/* background-color: white; */
/* border-right: 2px solid darkgray; */
}

/* #documenter .docs-sidebar .docs-logo > img {
Expand Down
9 changes: 9 additions & 0 deletions docs/src/internals.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Internals

## Others

```@docs
EvoLinear.Linear.update_∇!
EvoLinear.Linear.predict_linear
EvoLinear.Linear.predict_proj
```

0 comments on commit bd9abf7

Please sign in to comment.