Skip to content

Commit 55caed4

Browse files
committed
doc tweak
1 parent 1e504fe commit 55caed4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/anatomy_of_an_implementation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,10 @@ LearnAPI.coefficients(model::RidgeFitted) = model.named_coefficients
181181
nothing #hide
182182
```
183183

184-
## Tearing a model down for serialization
185-
186-
The `LearnAPI.strip` method falls back to the identity. Here, for the sake of illustration, we
187-
overload it to dump the named version of the coefficients:
184+
The [`LearnAPI.strip(model)`](@ref) accessor function is for returning a version of
185+
`model` suitable for serialization (typically smaller and data anonymized). It has a
186+
fallback that just returns `model` but for the sake of illustration, we overload it to
187+
dump the named version of the coefficients:
188188

189189
```@example anatomy
190190
LearnAPI.strip(model::RidgeFitted) =

0 commit comments

Comments
 (0)