Created
July 12, 2019 17:08
-
-
Save NMZivkovic/245792498da19ff2f9247c00548bc703 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Set the training algorithm | |
var trainer = mlContext.Regression.Trainers.FastTree( | |
new FastTreeRegressionTrainer.Options() { | |
NumberOfLeaves = 98, | |
MinimumExampleCountPerLeaf = 10, | |
NumberOfTrees = 500, | |
LearningRate = 0.07655732f, | |
Shrinkage = 0.2687001f, | |
LabelColumnName = "season", | |
FeatureColumnName = "Features" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment