Skip to content

Commit 4e9eb1e

Browse files
authored
Update snippet (#900)
1 parent e6ccd8d commit 4e9eb1e

File tree

1 file changed

+2
-2
lines changed
  • machine-learning/tutorials/TransferLearningTF

1 file changed

+2
-2
lines changed

machine-learning/tutorials/TransferLearningTF/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@ public static void ClassifyImages(MLContext mlContext, string dataLocation, stri
136136

137137
// Read the image_list.tsv file and add the filepath to the image file name
138138
// before loading into ImageData
139-
// <SnippetReadFromTSV>
139+
// <SnippetCallReadFromTSV>
140140
var imageData = ReadFromTsv(dataLocation, imagesFolder);
141141
var imageDataView = mlContext.Data.LoadFromEnumerable<ImageData>(imageData);
142-
// </SnippetReadFromTSV>
142+
// </SnippetCallReadFromTSV>
143143

144144
// <SnippetPredict>
145145
var predictions = model.Transform(imageDataView);

0 commit comments

Comments
 (0)