@@ -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
238238of 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
240240than losses, ensure values are multiplied by -1.
241241
242242$(DOC_IMPLEMENTED_METHODS (" :(LearnAPI.training_losses)" )) .
@@ -263,7 +263,7 @@ See also [`fit`](@ref).
263263Only implement this method for learners that specifically allow for the supplied training
264264data to be internally split into separate "train" and "validation" subsets, and which
265265additionally 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
267267computed 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
277277Where 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
280280generally cheaper.
281281
0 commit comments