Skip to content

Commit 386e8f8

Browse files
Merge pull request #11 from RogerDev/ML-428
ML-428 Fix minor documentation error in RegressionForest.ecl Reviewed-By: Richard Chapman <[email protected]>
2 parents f415f80 + b1fd2e1 commit 386e8f8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

BoostedRegForest.ecl

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ IRegression2 := Interfaces.IRegression2;
2323
* <p>Boosted Forests (BF) are a combination of Gradient Boosted Trees (GBT) and
2424
* Random Forests (RF). They provide accuracy at least as good as GBTs with the
2525
* ease of use of RFs. They utilize Boosting to enhance the
26-
* accuracy of Random Forests. Layers of Random Forests are constructed, each
26+
* accuracy of Random Forests.
27+
* <p>Layers of Random Forests are constructed, each
2728
* attempting to compensate for the cumulative error of the forests before it.
2829
*
2930
* <p>A Boosted Forest with a forest size of 1 is
@@ -137,7 +138,7 @@ IRegression2 := Interfaces.IRegression2;
137138
RETURN dsOut;
138139
END;
139140
/**
140-
* Fit a model that maps independent data (X) to its class (Y).
141+
* Fit a model that maps independent data (X) to its prediction of (Y).
141142
*
142143
* @param independents The set of independent data in NumericField format.
143144
* @param dependents The dependent variable in NumericField format. The 'number' field is not used as

0 commit comments

Comments
 (0)