Last updated on 2025-08-23 18:48:30 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.5.0 | 14.84 | 127.09 | 141.93 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.5.0 | 8.84 | 95.55 | 104.39 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.5.0 | 238.91 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.5.0 | 240.78 | OK | |||
r-devel-windows-x86_64 | 0.5.0 | 18.00 | 143.00 | 161.00 | OK | |
r-patched-linux-x86_64 | 0.5.0 | 18.39 | 117.10 | 135.49 | OK | |
r-release-linux-x86_64 | 0.5.0 | 15.36 | 117.63 | 132.99 | OK | |
r-release-macos-arm64 | 0.5.0 | 68.00 | OK | |||
r-release-macos-x86_64 | 0.5.0 | 127.00 | OK | |||
r-release-windows-x86_64 | 0.5.0 | 19.00 | 154.00 | 173.00 | OK | |
r-oldrel-macos-arm64 | 0.5.0 | 73.00 | OK | |||
r-oldrel-macos-x86_64 | 0.5.0 | 125.00 | OK | |||
r-oldrel-windows-x86_64 | 0.5.0 | 25.00 | 152.00 | 177.00 | ERROR |
Version: 0.5.0
Check: examples
Result: ERROR
Running examples in 'luz-Ex.R' failed
The error most likely occurred in:
> ### Name: lr_finder
> ### Title: Learning Rate Finder
> ### Aliases: lr_finder
>
> ### ** Examples
>
> if (torch::torch_is_installed()) {
+ library(torch)
+ ds <- torch::tensor_dataset(x = torch_randn(100, 10), y = torch_randn(100, 1))
+ dl <- torch::dataloader(ds, batch_size = 32)
+ model <- torch::nn_linear
+ model <- model %>% setup(
+ loss = torch::nn_mse_loss(),
+ optimizer = torch::optim_adam
+ ) %>%
+ set_hparams(in_features = 10, out_features = 1)
+ records <- lr_finder(model, dl, verbose = FALSE)
+ plot(records)
+ }
Flavor: r-oldrel-windows-x86_64
Version: 0.5.0
Check: re-building of vignette outputs
Result: ERROR
Error(s) in re-building vignettes:
--- re-building 'accelerator.Rmd' using rmarkdown
--- finished re-building 'accelerator.Rmd'
--- re-building 'custom-loop.Rmd' using rmarkdown
--- finished re-building 'custom-loop.Rmd'
--- re-building 'get-started.Rmd' using rmarkdown
SUMMARY: processing the following file failed:
'get-started.Rmd'
Error: Vignette re-building failed.
Execution halted
Flavor: r-oldrel-windows-x86_64