Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[R-package] callbacks per #892 #1264

Merged
merged 26 commits into from
Jul 3, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
64b9dcf
fix multiple evaluation metrics
khotilov May 31, 2016
22ad94d
create DefaultEvalMetric only when really necessary
khotilov May 31, 2016
ba04a1d
py test for #1239
khotilov Jun 5, 2016
26a8262
make travis happy
khotilov Jun 5, 2016
264c222
Merge remote-tracking branch 'upstream/master'
khotilov Jun 9, 2016
bdf1400
print method; construct from initial xgb.Booster
khotilov Jun 9, 2016
754f3a6
protection against returning 0-length vector
khotilov Jun 9, 2016
422b000
R-callbacks refactor
khotilov Jun 9, 2016
2e0ffcc
R-callbacks docs
khotilov Jun 9, 2016
f34f9fb
R-callbacks tests + other tests brushup
khotilov Jun 9, 2016
79704cd
print.xgb.cv fix
khotilov Jun 9, 2016
4e1269b
print.xgb.cv fix - Rd too
khotilov Jun 9, 2016
76650c0
[R] CB naming change; cv-prediction as CB; add.cb function to ensure …
khotilov Jun 27, 2016
c342614
[R] add parameter deprecation related utilities; code style
khotilov Jun 27, 2016
b9aeeda
[R] in predict: doc, examples, reshape parameter
khotilov Jun 27, 2016
8473b18
[R] consolidate importFrom-s; parameter style
khotilov Jun 27, 2016
56bd442
[R] simplified the code; parameter style consistency
khotilov Jun 27, 2016
e9eb34f
[R] parameter style consistency
khotilov Jun 27, 2016
a0aa305
[R] docs update - callbacks and parameter style
khotilov Jun 27, 2016
3b6b344
[R] adopt demos and vignettes to a more consistent parameter style
khotilov Jun 27, 2016
fd4300b
[R] additional and modified tests
khotilov Jun 27, 2016
e1a52e8
[R] rm renamed CB's docs
khotilov Jun 27, 2016
4b2eedc
fix merge conflicts
khotilov Jun 27, 2016
ae0ca48
added name to DESCRIPTION
khotilov Jun 27, 2016
344d7b4
[R] disable for now some of the RF tests that fail in travis
khotilov Jun 27, 2016
4fb1b8a
Merge branch 'master' into r_callbacks
khotilov Jul 3, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion R-package/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Title: Extreme Gradient Boosting
Version: 0.4-3
Date: 2015-08-01
Author: Tianqi Chen <tianqi.tchen@gmail.com>, Tong He <hetong007@gmail.com>,
Michael Benesty <michael@benesty.fr>
Michael Benesty <michael@benesty.fr>, Vadim Khotilovich <khotilovich@gmail.com>
Maintainer: Tong He <hetong007@gmail.com>
Description: Extreme Gradient Boosting, which is an efficient implementation
of gradient boosting framework. This package is its R interface. The package
Expand Down
12 changes: 10 additions & 2 deletions R-package/NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,16 @@ S3method(slice,xgb.DMatrix)
export("xgb.attr<-")
export("xgb.attributes<-")
export("xgb.parameters<-")
export(cb.cv.predict)
export(cb.early.stop)
export(cb.evaluation.log)
export(cb.print.evaluation)
export(cb.reset.parameters)
export(cb.save.model)
export(getinfo)
export(print.xgb.Booster)
export(print.xgb.DMatrix)
export(print.xgb.cv.synchronous)
export(setinfo)
export(slice)
export(xgb.DMatrix)
Expand Down Expand Up @@ -44,13 +52,13 @@ importFrom(Matrix,sparseVector)
importFrom(data.table,":=")
importFrom(data.table,as.data.table)
importFrom(data.table,data.table)
importFrom(data.table,fread)
importFrom(data.table,rbindlist)
importFrom(data.table,setnames)
importFrom(magrittr,"%>%")
importFrom(stringr,str_detect)
importFrom(stringr,str_extract)
importFrom(stringr,str_extract_all)
importFrom(stringr,str_match)
importFrom(stringr,str_replace)
importFrom(stringr,str_replace_all)
importFrom(stringr,str_split)
useDynLib(xgboost)
Loading