Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/predict_transform.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ end
DOC_MUTATION(op) =
"""

If [`LearnAPI.kind_of(learner)`](@ref) is `LearnAPI.Static()`(@ref), then `$op` may
If [`LearnAPI.kind_of(learner)`](@ref) is [`LearnAPI.Static()`](@ref), then `$op` may
mutate it's first argument (to record byproducts of the computation not naturally part
of the return value) but not in a way that alters the result of a subsequent call to
`predict`, `transform` or `inverse_transform`. See more at [`fit`](@ref).
Expand Down Expand Up @@ -83,7 +83,7 @@ See also [`fit`](@ref), [`transform`](@ref), [`inverse_transform`](@ref).

# Extended help

In the special case If [`LearnAPI.kind_of(learner)`](@ref) is `LearnAPI.Static()`(@ref),
In the special case If [`LearnAPI.kind_of(learner)`](@ref) is [`LearnAPI.Static()`](@ref),
it is possible that `predict(model, ...)` will mutate `model`, but not in a way that
affects subsequent `predict` calls.

Expand Down Expand Up @@ -151,7 +151,7 @@ or, in one step (where supported):
W = transform(learner, X) # `fit` implied
```

In the special case If [`LearnAPI.kind_of(learner)`](@ref) is `LearnAPI.Static()`(@ref),
In the special case If [`LearnAPI.kind_of(learner)`](@ref) is [`LearnAPI.Static()`](@ref),
it is possible that `transform(model, ...)` will mutate `model`, but not in a way that
affects subsequent `transform` calls.

Expand Down
Loading