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
#!/usr/bin/env Rscript

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

cat("Installing dependencies to", lib_path, "...\n")
deps <- c("roxygen2", "testthat", "jsonlite")
install.packages(deps, lib = lib_path, repos = "https://cloud.r-project.org")
cat("Installation complete.\n")