Skip to content

Commit 18aaee0

Browse files
committed
Deploying to gh-pages from @ 2661456 🚀
1 parent a939ca6 commit 18aaee0

8 files changed

+56
-16
lines changed

pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pandoc: 3.1.11
22
pkgdown: 2.2.0
33
pkgdown_sha: ~
44
articles: {}
5-
last_built: 2025-11-20T09:24Z
5+
last_built: 2025-11-20T09:40Z
66
urls:
77
reference: https://mlr3forecast.mlr-org.com/reference
88
article: https://mlr3forecast.mlr-org.com/articles

reference/mlr_learners_fcst.adam.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference/mlr_learners_fcst.adam.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ learner$train(task, row_ids = ids$train)
203203

204204
# Print the model
205205
print(learner$model)
206-
#> Time elapsed: 0.18 seconds
206+
#> Time elapsed: 0.17 seconds
207207
#> Model estimated using adam() function: ETS(MAM)
208208
#> With backcasting initialisation
209209
#> Distribution assumed in the model: Gamma

reference/mlr_learners_fcst.auto_adam.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference/mlr_learners_fcst.auto_adam.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ learner$train(task, row_ids = ids$train)
202202

203203
# Print the model
204204
print(learner$model)
205-
#> Time elapsed: 4.15 seconds
205+
#> Time elapsed: 4.1 seconds
206206
#> Model estimated using auto.adam() function: ETS(MAM)
207207
#> With backcasting initialisation
208208
#> Distribution assumed in the model: Normal

reference/mlr_resamplings_fcst.cv.html

Lines changed: 25 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference/mlr_resamplings_fcst.cv.md

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,17 +132,37 @@ task$filter(1:20)
132132
# Instantiate Resampling
133133
cv = rsmp("fcst.cv", folds = 3, fixed_window = FALSE)
134134
cv$instantiate(task)
135-
#> Error in is.finite(if (is.character(from)) from <- as.numeric(from) else from): default method not implemented for type 'list'
136135

137136
# Individual sets:
138137
cv$train_set(1)
139-
#> Error: Resampling 'fcst.cv' has not been instantiated yet
138+
#> [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
140139
cv$test_set(1)
141-
#> Error: Resampling 'fcst.cv' has not been instantiated yet
140+
#> [1] 20
142141
intersect(cv$train_set(1), cv$test_set(1))
143-
#> Error: Resampling 'fcst.cv' has not been instantiated yet
142+
#> integer(0)
144143

145144
# Internal storage:
146145
cv$instance # list
147-
#> NULL
146+
#> $train
147+
#> $train[[1]]
148+
#> [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
149+
#>
150+
#> $train[[2]]
151+
#> [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
152+
#>
153+
#> $train[[3]]
154+
#> [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
155+
#>
156+
#>
157+
#> $test
158+
#> $test[[1]]
159+
#> [1] 20
160+
#>
161+
#> $test[[2]]
162+
#> [1] 19
163+
#>
164+
#> $test[[3]]
165+
#> [1] 18
166+
#>
167+
#>
148168
```

search.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)