Skip to content

Commit affcc87

Browse files
Initial Commit
0 parents  commit affcc87

27 files changed

+1589
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.Rproj.user
2+
Admin
3+
.Rbuildignore
4+
.Rhistory
5+
ParBayesianOptimization.Rproj
6+
README.Rmd
7+
CRAN-RELEASE

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
2+
3+
language: R
4+
sudo: false
5+
cache: packages

DESCRIPTION

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Package: ParBayesianOptimization
2+
Title: Parallel Bayesian Optimization of Hyperparameters
3+
Version: 0.0.1
4+
Authors@R: person("Samuel", "Wilson", email = "[email protected]", role = c("aut", "cre"))
5+
Description: Converge to best hyperparameter set by iteratively fitting gaussian processes.
6+
Depends: R (>= 3.5.0), data.table (>= 1.11.8), GauPro, stats, foreach
7+
License: GPL-2
8+
Encoding: UTF-8
9+
LazyData: true
10+
RoxygenNote: 6.1.0.9000
11+
Suggests: knitr,rmarkdown,xgboost,doParallel,ggplot2
12+
VignetteBuilder: knitr
13+
Maintainer: Samuel Wilson <[email protected]>

NAMESPACE

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Generated by roxygen2: do not edit by hand
2+
3+
export(ApplyNoise)
4+
export(BayesianOptimization)
5+
export(CheckBounds)
6+
export(MinMaxScale)
7+
export(RandParams)
8+
export(UnMMScale)
9+
export(assignKern)
10+
export(calcAcq)
11+
export(maxAcq)
12+
export(updateGP)
13+
import(foreach)
14+
importFrom(GauPro,Exponential)
15+
importFrom(GauPro,GauPro_kernel_model)
16+
importFrom(GauPro,Gaussian)
17+
importFrom(GauPro,Matern32)
18+
importFrom(GauPro,Matern52)
19+
importFrom(data.table,":=")
20+
importFrom(data.table,as.data.table)
21+
importFrom(data.table,between)
22+
importFrom(data.table,data.table)
23+
importFrom(data.table,setDT)
24+
importFrom(data.table,setcolorder)
25+
importFrom(stats,dnorm)
26+
importFrom(stats,optim)
27+
importFrom(stats,pnorm)
28+
importFrom(stats,rbeta)
29+
importFrom(stats,runif)
30+
importFrom(utils,head)

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# ParBayesianOptimization 0.0.1
2+
3+
* Added a `NEWS.md` file to track changes to the package.

ParBayesianOptimization.Rproj

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Version: 1.0
2+
3+
RestoreWorkspace: No
4+
SaveWorkspace: No
5+
AlwaysSaveHistory: Default
6+
7+
EnableCodeIndexing: Yes
8+
UseSpacesForTab: Yes
9+
NumSpacesForTab: 2
10+
Encoding: UTF-8
11+
12+
RnwWeave: Sweave
13+
LaTeX: pdfLaTeX
14+
15+
AutoAppendNewline: Yes
16+
StripTrailingWhitespace: Yes
17+
18+
BuildType: Package
19+
PackageUseDevtools: Yes
20+
PackageInstallArgs: --no-multiarch --with-keep.source
21+
PackageRoxygenize: rd,collate,namespace

0 commit comments

Comments
 (0)