File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed 
docs/samples/Microsoft.ML.Samples/Dynamic/Trainers/Regression Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public static void Example()
2727            var  trainingData  =  mlContext . Data . LoadFromEnumerable ( dataPoints ) ; 
2828
2929            // Define the trainer. 
30-             var  pipeline  =  mlContext . Regression . Trainers . FastForest ( 
30+             var  pipeline  =  mlContext . Regression . Trainers . FastTree ( 
3131                labelColumnName :  nameof ( DataPoint . Label ) , 
3232                featureColumnName :  nameof ( DataPoint . Features ) ) ; 
3333
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ string ClassHeader = @"// This example requires installation of additional NuGet
77
88string ClassName="FastTreeRegression";
99string ExtraUsing = null;
10- string Trainer = @"FastForest (
10+ string Trainer = @"FastTree (
1111                labelColumnName: nameof(DataPoint.Label),
1212                featureColumnName: nameof(DataPoint.Features))";
1313string TrainerOptions = null;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public static void Example()
2727            var  trainingData  =  mlContext . Data . LoadFromEnumerable ( dataPoints ) ; 
2828
2929            // Define the trainer. 
30-             var  pipeline  =  mlContext . Regression . Trainers . FastForest ( 
30+             var  pipeline  =  mlContext . Regression . Trainers . FastTreeTweedie ( 
3131                labelColumnName :  nameof ( DataPoint . Label ) , 
3232                featureColumnName :  nameof ( DataPoint . Features ) ) ; 
3333
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ string ClassHeader = @"// This example requires installation of additional NuGet
77
88string ClassName="FastTreeTweedieRegression";
99string ExtraUsing = null;
10- string Trainer = @"FastForest (
10+ string Trainer = @"FastTreeTweedie (
1111                labelColumnName: nameof(DataPoint.Label),
1212                featureColumnName: nameof(DataPoint.Features))";
1313string TrainerOptions = null;
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments