Skip to content

Commit 2312c1d

Browse files
committed
tweak
1 parent f690c44 commit 2312c1d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/src/fit_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ or, if implemented, using a single call:
6060
transform(algorithm, X) # `fit` implied
6161
```
6262

63-
### Static algorithms (no "learning")
63+
### [Static algorithms (no "learning")](@id static_algorithms)
6464

6565
Suppose `algorithm` is some clustering algorithm that cannot be generalized to new data
6666
(e.g. DBSCAN):

docs/src/reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ bare minimum implementation, see the implementation of `SmallAlgorithm`
148148
### List of methods
149149

150150
- [`fit`](@ref fit): for training or updating algorithms that generalize to new data. Or,
151-
for non-generalizing algorithms (see [Static Algorithms](@ref)), for wrapping
152-
`algorithm` in a mutable struct that can be mutated by `predict`/`transform` to record
153-
byproducts of those operations.
151+
for non-generalizing algorithms (see [here](@ref static_algorithms) and [Static
152+
Algorithms](@ref)), for wrapping `algorithm` in a mutable struct that can be mutated by
153+
`predict`/`transform` to record byproducts of those operations.
154154

155155
- [`update`](@ref fit): for updating learning outcomes after hyperparameter changes, such
156156
as increasing an iteration parameter.

0 commit comments

Comments
 (0)