Skip to content

Commit 07c815e

Browse files
committed
fix bad urls
1 parent 105d7ff commit 07c815e

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const REPO = Remotes.GitHub("JuliaAI", "LearnAPI.jl")
77
makedocs(
88
modules=[LearnAPI,],
99
format=Documenter.HTML(
10-
prettyurls = get(ENV, "CI", nothing) == "true",
10+
prettyurls = true,#get(ENV, "CI", nothing) == "true",
1111
collapselevel = 1,
1212
),
1313
pages=[

docs/src/anatomy_of_an_implementation.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -366,8 +366,8 @@ An implementation may optionally implement [`obs`](@ref), to expose to the user
366366
meta-algorithm like cross-validation) the representation of input data internal to `fit`
367367
or `predict`, such as the matrix version `A` of `X` in the ridge example. That is, we may
368368
factor out of `fit` (and also `predict`) the data pre-processing step, `obs`, to expose
369-
its outcomes. These outcomes become alternative user inputs to `fit`. To see the use of
370-
`obs` in action, see [below](@ref advanced_demo).
369+
its outcomes. These outcomes become alternative user inputs to `fit`/`predict`. To see the
370+
use of `obs` in action, see [below](@ref advanced_demo).
371371

372372
Here we specifically wrap all the pre-processed data into single object, for which we
373373
introduce a new type:
@@ -536,7 +536,5 @@ declaration.
536536
³ The last index must be the observation index.
537537

538538
⁴ The `data = (X, y)` pattern implemented here is not the only supported pattern. For,
539-
example, `data` might be a single table containing both features and target variable. In
540-
this case, it will be necessary to overload [`LearnAPI.features`](@ref) in addition to
541-
[`LearnAPI.target`](@ref); the name of the target column would need to be a
542-
hyperparameter.
539+
example, `data` might be `(T, formula)` where `T` is a table and `formula` is an R-style
540+
formula.

docs/src/fit_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clustering algorithms); there is no training data and the algorithm is executed
1717
```
1818
update(model, data; verbosity=..., param1=new_value1, param2=new_value2, ...) -> updated_model
1919
update_observations(model, new_data; verbosity=..., param1=new_value1, ...) -> updated_model
20-
update_features(model, new_data; verbosity=1, param1=new_value1, ...) -> updated_model
20+
update_features(model, new_data; verbosity=..., param1=new_value1, ...) -> updated_model
2121
```
2222

2323
## Typical workflows

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<script async defer src="https://buttons.github.io/buttons.js"></script>
33
44
<div style="font-size:1.4em;font-weight:bold;">
5-
<a href="anatomy_of_an_implementation.html"
5+
<a href="anatomy_of_an_implementation"
66
style="color: #389826;">Tutorial</a> &nbsp;|&nbsp;
7-
<a href="reference.html"
7+
<a href="reference"
88
style="color: #9558B2;">Reference</a> &nbsp;|&nbsp;
9-
<a href="common_implementation_patterns.html"
9+
<a href="common_implementation_patterns"
1010
style="color: #9558B2;">Patterns</a>
1111
</div>
1212

0 commit comments

Comments
 (0)