Skip to content

Commit

Permalink
merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
schalkdaniel committed Jan 23, 2019
2 parents 41fdffd + b9718d2 commit ef3ec65
Show file tree
Hide file tree
Showing 86 changed files with 3,894 additions and 3,497 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
@@ -1,7 +1,7 @@
Package: compboost
Type: Package
Title: C++ Implementation of Component-Wise Boosting
Version: 0.1.0
Version: 0.1.1
Authors@R: c(
person(given = "Daniel", family = "Schalk", email = "daniel.schalk@stat.uni-muenchen.de", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-0950-1947")),
person(given = "Janek", family = "Thomas", email = "janek.thomas@stat.uni-muenchen.de", role = "aut", comment = c(ORCID = "0000-0003-4511-6245")),
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Expand Up @@ -20,6 +20,8 @@ export(LossCustomCpp)
export(LossQuadratic)
export(OptimizerCoordinateDescent)
export(OptimizerCoordinateDescentLineSearch)
export(ResponseBinaryClassif)
export(ResponseRegr)
export(boostLinear)
export(boostSplines)
export(getCustomCppExample)
Expand Down
11 changes: 11 additions & 0 deletions NEWS.md
@@ -1,3 +1,14 @@
## compboost 0.1.1

- **23.01.2019** \
Most parts of compboost are now using smart pointer.

- **23.01.2019** \
**Style**: Change `.` to `_`, e.g. change `n.knots` to `n_knots`, to be more consistent with `C++` syntax.

- **19.01.2019** \
There is now a new `Response` class to be more versatile for given tasks.

- **14.12.2018** \
To track the out of bag risk is now easy controllable through a argument `oob.fraction`. The paths of inbag vs. out of bag risk can be plotted with `plotInbagVsOobRisk()`

Expand Down

0 comments on commit ef3ec65

Please sign in to comment.