@@ -79,7 +79,7 @@ module SmokeTest1 =
7979 let data = ml.Data.LoadFromTextFile< SentimentData>( testDataPath, hasHeader = true , allowQuoting = true )
8080
8181 let pipeline = ml.Transforms.Text.FeaturizeText( " Features" , " SentimentText" )
82- .Append( ml.BinaryClassification.Trainers.FastTree( numLeaves = 5 , numTrees = 5 ))
82+ .Append( ml.BinaryClassification.Trainers.FastTree( numberOfLeaves = 5 , numberOfTrees = 5 ))
8383
8484 let model = pipeline.Fit( data)
8585
@@ -119,7 +119,7 @@ module SmokeTest2 =
119119 let data = ml.Data.LoadFromTextFile< SentimentData>( testDataPath, hasHeader = true , allowQuoting = true )
120120
121121 let pipeline = ml.Transforms.Text.FeaturizeText( " Features" , " SentimentText" )
122- .Append( ml.BinaryClassification.Trainers.FastTree( numLeaves = 5 , numTrees = 5 ))
122+ .Append( ml.BinaryClassification.Trainers.FastTree( numberOfLeaves = 5 , numberOfTrees = 5 ))
123123
124124 let model = pipeline.Fit( data)
125125
@@ -156,7 +156,7 @@ module SmokeTest3 =
156156 let data = ml.Data.LoadFromTextFile< SentimentData>( testDataPath, hasHeader = true , allowQuoting = true )
157157
158158 let pipeline = ml.Transforms.Text.FeaturizeText( " Features" , " SentimentText" )
159- .Append( ml.BinaryClassification.Trainers.FastTree( numLeaves = 5 , numTrees = 5 ))
159+ .Append( ml.BinaryClassification.Trainers.FastTree( numberOfLeaves = 5 , numberOfTrees = 5 ))
160160
161161 let model = pipeline.Fit( data)
162162
0 commit comments