File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ - 2.0.2
2
+ - Fix Decision Tree max height terminating condition
3
+
1
4
- 2.0.1
2
5
- Compensate for PHP 8.1 backward compatibility issues
3
6
32
35
- Change RBX serializer constructor argument from base to level
33
36
- Rename Writeable extractor interface to Exporter
34
37
38
+ - 1.3.4
39
+ - Fix Decision Tree max height terminating condition
40
+
35
41
- 1.3.3
36
42
- Forego unnecessary logistic computation in Logit Boost
37
43
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ public function grow(Labeled $dataset) : void
142
142
143
143
$ this ->root = $ this ->split ($ dataset );
144
144
145
- $ stack = [[$ this ->root , 1 ]];
145
+ $ stack = [[$ this ->root , 0 ]];
146
146
147
147
while ($ stack ) {
148
148
[$ current , $ depth ] = array_pop ($ stack );
Original file line number Diff line number Diff line change 9
9
*
10
10
* @var string
11
11
*/
12
- const VERSION = '2.0.1 ' ;
12
+ const VERSION = '2.0.2 ' ;
13
13
14
14
/**
15
15
* A small number used in substitution of 0.
You can’t perform that action at this time.
0 commit comments