2102 Commits

Author SHA1 Message Date
Yuan (Terry) Tang
0a0951ba12 Clarification for best_ntree_limit 2015-11-12 08:53:45 -06:00
Yuan (Terry) Tang
42e1fd8fff Merge pull request #598 from Far0n/py_train
best_ntree_limit attribute & training continuation bugfix
2015-11-12 06:16:19 -06:00
Yuan (Terry) Tang
309fb90a5d Merge pull request #618 from phunterlau/master
fix pushd problem of pip building, convert README to rst for PyPI
2015-11-12 06:11:07 -06:00
Faron
7f2628acd7 unittest for 'num_class > 2' added 2015-11-12 08:23:11 +01:00
phunterlau
ee4096d23e fix pushd problem of pip building, convert README to rst for PyPI 2015-11-11 23:03:07 -08:00
Yuan (Terry) Tang
7b3fd92015 Added PyPI badges 2015-11-10 18:23:39 -06:00
Far0n
ce5930c365 best_ntree_limit attribute added
- best_ntree_limit as new booster atrribute added
- usage of bst.best_ntree_limit in python doc added
- fixed wrong 'best_iteration' after training continuation
2015-11-10 15:37:22 +01:00
Yuan (Terry) Tang
f91ce704f3 Merge pull request #615 from antonymayi/master
python 2.6 compatibility tweak
2015-11-10 08:26:12 -06:00
antonymayi
8c7b18daed python 2.6 compatibility tweak
replacing set literal {} with set() for python 2.6 compatibility (plus reformatting the line)
2015-11-10 14:50:54 +01:00
Yuan (Terry) Tang
d1969b4c03 Update CHANGES.md 2015-11-09 18:13:44 -06:00
Yuan (Terry) Tang
1dd96b6cdc Merge pull request #597 from JohanManders/python-pandas-dtypes
Python pandas dtypes
2015-11-09 18:08:41 -06:00
Yuan (Terry) Tang
7491413de5 Merge pull request #611 from antonymayi/master
python 2.6 compatibility
2015-11-09 08:45:26 -06:00
antonymayi
7114d6681a Update training.py
pylint compliancy
2015-11-09 15:09:14 +01:00
antonymayi
34e01642ca Update training.py
avoid dict comprehension for python 2.6 compatibility
2015-11-09 14:26:16 +01:00
Yuan (Terry) Tang
b8bc85b534 Clarification for learning_rates 2015-11-08 21:10:04 -06:00
Tong He
4db3dfee7d Update utils.R 2015-11-08 18:08:51 -08:00
Yuan (Terry) Tang
ae31bc21bc Merge pull request #610 from Far0n/master
grammar correction
2015-11-08 15:06:20 -05:00
Faron
b2f98db74e grammar correction 2015-11-08 21:00:16 +01:00
Yuan (Terry) Tang
bde25d6694 Added recent changes 2015-11-08 14:57:36 -05:00
Yuan (Terry) Tang
e837b339cc Reformat CHANGES.md 2015-11-08 14:54:52 -05:00
Yuan (Terry) Tang
01053f8f2f Merge pull request #594 from Far0n/feval
python: multiple eval_metrics changes
2015-11-08 10:10:28 -05:00
Yuan (Terry) Tang
8fc5693ef6 Merge pull request #609 from Far0n/cv_early_stopping_unittest
python: unittest for early stopping of cv
2015-11-08 09:59:18 -05:00
FrozenFingerz
3d36fa8f4e python: unittest for early stopping of cv 2015-11-08 11:42:57 +01:00
FrozenFingerz
b59018aa05 python: multiple eval_metrics changes
- allows feval to return a list of tuples (name, error/score value)
- changed behavior for multiple eval_metrics in conjunction with
early_stopping: Instead of raising an error, the last passed evel_metric
(or last entry in return value of feval) is used for early stopping
- allows list of eval_metrics in dict-typed params
- unittest for new features / behavior

documentation updated

- example for assigning a list to 'eval_metric'
- note about early stopping on last passed eval metric

- info msg for used eval metric added
2015-11-08 11:23:54 +01:00
Michaël Benesty
282a64c252 Merge pull request #608 from ClimbsRocks/patch-8
minor formatting update
2015-11-08 08:42:27 +01:00
Michaël Benesty
5268c19b6b Merge pull request #607 from ClimbsRocks/patch-7
punctuation update
2015-11-08 08:41:03 +01:00
Michaël Benesty
f5659e17d5 Merge pull request #605 from pommedeterresautee/master
Rewrite Viz function
2015-11-08 08:40:22 +01:00
Preston Parry
af047e9f8c minor formatting update 2015-11-07 22:32:18 -08:00
Preston Parry
d25efb6468 punctuation update 2015-11-07 22:27:39 -08:00
Yuan (Terry) Tang
ebbde5c343 Merge pull request #606 from cauldnz/patch-1
Fixing broken link for R sample.
2015-11-08 00:21:54 -05:00
Chris Auld
e74628f5d4 Update README.md
Fixed broken link for R 'First N Trees' sample.
2015-11-07 20:26:32 -08:00
unknown
7cb34e3ad6 Fix some bug + improve display + code clean 2015-11-07 22:24:37 +01:00
unknown
996645dc17 Change the way functions are called 2015-11-07 22:04:54 +01:00
unknown
77ae180d3d Remove DiagrammeR dependency to make travis happy... 2015-11-07 21:46:08 +01:00
unknown
0052b193cf Update lib version dependencies (for DiagrammeR mainly)
Fix @export tag in each R file (for Roxygen 5, otherwise it doesn't work anymore)
Regerate Roxygen doc
2015-11-07 21:01:28 +01:00
unknown
635645c650 Rewrite tree plot function
Replace Mermaid by GraphViz
2015-11-07 21:00:02 +01:00
unknown
231a6e7aea Merge branch 'master' of https://github.com/pommedeterresautee/xgboost
# Conflicts:
#	R-package/R/xgb.model.dt.tree.R
2015-11-07 19:13:14 +01:00
Yuan (Terry) Tang
562fe8078b Added CV early stopping to CHANGES 2015-11-07 09:45:13 -05:00
Yuan (Terry) Tang
a3a4439dec Merge pull request #602 from Far0n/cv
early stopping for CV (python) issue #529
2015-11-07 09:42:54 -05:00
Faron
95cc900b1f early stopping for CV (python) 2015-11-07 09:52:36 +01:00
Yuan (Terry) Tang
190e58a8c6 Added test for maximize parameter 2015-11-04 22:25:10 -06:00
Johan Manders
5f0f8749d9 Cleaned up some code 2015-11-04 18:05:47 +01:00
Yuan (Terry) Tang
8bf6525394 Added PyPI badge to README 2015-11-04 09:19:40 -06:00
Johan Manders
b0f38e9352 Changed 4 tests
Changed symbol test to give error on < sign, not on = sign
Changed 3 other functions, so that float is used instead of q
2015-11-03 21:32:47 +01:00
Johan Manders
f9e1b2b7b7 Added back feature names 2015-11-03 21:26:11 +01:00
Johan Manders
96f221e0d0 Merge pull request #5 from dmlc/master
Update to latest version
2015-11-03 20:37:20 +01:00
Yuan (Terry) Tang
e436c94419 Create CHANGES.md 2015-11-03 08:32:52 -06:00
Yuan (Terry) Tang
deb802b2be Merge pull request #587 from Far0n/py_train
python training continuation & maximize parameter
2015-11-03 08:16:12 -06:00
Far0n
8e1adddc2b added unittest for training continuation 2015-11-03 14:44:17 +01:00
Far0n
b894f7c9d6 bugfix type-check xgb_model param 2015-11-03 14:43:08 +01:00