perpetual 2.1.0

A self-generalizing gradient boosting machine that doesn't need hyperparameter optimization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env Rscript

lib_path <- file.path("package-r", "R_library")
if (dir.exists(lib_path)) {
  .libPaths(c(lib_path, .libPaths()))
}

if (!requireNamespace("roxygen2", quietly = TRUE)) {
  stop("roxygen2 is not installed. Please install it with install.packages('roxygen2')")
}

cat("Generating R documentation for 'package-r'...\n")
roxygen2::roxygenise("package-r")
cat("Documentation generation complete.\n")