This repository was archived by the owner on Nov 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
internal/core/ensemble/booster Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 7
7
<https://arxiv.org/abs/1505.01866>`_ is an
8
8
ensemble method of boosted regression trees. The Dropouts meet
9
9
Multiple Additive Regression
10
- Trees (DART) employs dropouts in MART and overcomes the issues of over-
10
+ Trees (DART) employs dropouts in MART and overcomes the issues of over-
11
11
specialization of MART,
12
- achiving better performance in many tasks.
12
+ achieving better performance in many tasks.
13
13
14
14
15
15
**Reference**
Original file line number Diff line number Diff line change 1
1
"""
2
2
3
3
A Stochastic Dual Coordinate Ascent (SDCA) optimization trainer for
4
- multi class classification.
4
+ multi class classification.
5
5
6
6
.. remarks::
7
7
``FastLinearClassifier`` is a trainer based on the Stochastic Dual
Original file line number Diff line number Diff line change 5
5
.. remarks::
6
6
Gradient-based One-Side Sampling (GOSS) employs an adaptive sampling
7
7
named gradient-based
8
- sampling. For datasets with large sample size, GOSS has considerable
8
+ sampling. For datasets with large sample size, GOSS has considerable
9
9
advantage in terms of
10
- statistical and computational efficiency.
10
+ statistical and computational efficiency.
11
11
12
12
13
13
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class Dart(core):
26
26
Multiple Additive Regression
27
27
Trees (DART) employs dropouts in MART and overcomes the issues of over-
28
28
specialization of MART,
29
- achiving better performance in many tasks.
29
+ achieving better performance in many tasks.
30
30
31
31
32
32
**Reference**
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Dart(Component):
27
27
Multiple Additive Regression
28
28
Trees (DART) employs dropouts in MART and overcomes the issues of over-
29
29
specialization of MART,
30
- achiving better performance in many tasks.
30
+ achieving better performance in many tasks.
31
31
32
32
33
33
**Reference**
You can’t perform that action at this time.
0 commit comments