Skip to content

Commit d21c403

Browse files
committed
fix typos
1 parent d6f8cec commit d21c403

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/accessor_functions.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ See also [`fit`](@ref).
234234
235235
# New implementations
236236
237-
Implement for iterative algorithms that compute meausures of training performance as part
237+
Implement for iterative algorithms that compute measures of training performance as part
238238
of training (e.g. neural networks). Return one value per iteration, in chronological
239-
order, with an optional pre-training intial value. If scores are being computed rather
239+
order, with an optional pre-training initial value. If scores are being computed rather
240240
than losses, ensure values are multiplied by -1.
241241
242242
$(DOC_IMPLEMENTED_METHODS(":(LearnAPI.training_losses)")).
@@ -263,7 +263,7 @@ See also [`fit`](@ref).
263263
Only implement this method for learners that specifically allow for the supplied training
264264
data to be internally split into separate "train" and "validation" subsets, and which
265265
additionally compute an out-of-sample loss. Return one value per iteration, in
266-
chronological order, with an optional pre-training intial value. If scores are being
266+
chronological order, with an optional pre-training initial value. If scores are being
267267
computed rather than losses, ensure values are multiplied by -1.
268268
269269
$(DOC_IMPLEMENTED_METHODS(":(LearnAPI.out_of_sample_losses)")).
@@ -275,7 +275,7 @@ function out_of_sample_losses end
275275
LearnAPI.predictions(model)
276276
277277
Where supported, return internally computed predictions on the training `data` after
278-
running `model = fit(learner, data)` for some `learner`. Sematically equivalent to calling
278+
running `model = fit(learner, data)` for some `learner`. Semantically equivalent to calling
279279
`LearnAPI.predict(model, X)`, where `X = LearnAPI.features(obs(learner, data))` but
280280
generally cheaper.
281281

0 commit comments

Comments
 (0)