diff --git a/docs/samples/Microsoft.ML.Samples/Dynamic/FeatureContributionCalculationTransform.cs b/docs/samples/Microsoft.ML.Samples/Dynamic/FeatureContributionCalculationTransform.cs index 96ef491bb7..81e5f9588b 100644 --- a/docs/samples/Microsoft.ML.Samples/Dynamic/FeatureContributionCalculationTransform.cs +++ b/docs/samples/Microsoft.ML.Samples/Dynamic/FeatureContributionCalculationTransform.cs @@ -8,7 +8,7 @@ public class FeatureContributionCalculationTransform_RegressionExample public static void FeatureContributionCalculationTransform_Regression() { // Downloading the dataset from github.com/dotnet/machinelearning. - // This will create a sentiment.tsv file in the filesystem. + // This will create a housing.txt file in the filesystem. // You can open this file, if you want to see the data. string dataFile = SamplesUtils.DatasetUtils.DownloadHousingRegressionDataset(); @@ -72,7 +72,7 @@ public static void FeatureContributionCalculationTransform_Regression() var weights = new VBuffer(); model.Model.GetFeatureWeights(ref weights); - // Let's now walk through the first ten reconds and see which feature drove the values the most + // Let's now walk through the first ten records and see which feature drove the values the most // Get prediction scores and contributions var scoringEnumerator = outputData.AsEnumerable(mlContext, true).GetEnumerator(); int index = 0;