Skip to content

Commit a262b18

Browse files
updated samples image url (#1017)
1 parent 2552321 commit a262b18

File tree

3 files changed

+3
-3
lines changed
  • samples
    • csharp/getting-started
      • DeepLearning_ImageClassification_Training/ImageClassification.Train
      • DeepLearning_TensorFlowEstimator/ImageClassification.Train
    • fsharp/getting-started/DeepLearning_ImageClassification_Training/ImageClassification.Train

3 files changed

+3
-3
lines changed

samples/csharp/getting-started/DeepLearning_ImageClassification_Training/ImageClassification.Train/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public static string DownloadImageSet(string imagesDownloadFolder)
162162

163163
//SINGLE SMALL FLOWERS IMAGESET (200 files)
164164
const string fileName = "flower_photos_small_set.zip";
165-
var url = $"https://mlnetfilestorage.file.core.windows.net/imagesets/flower_images/flower_photos_small_set.zip?st=2019-08-07T21%3A27%3A44Z&se=2030-08-08T21%3A27%3A00Z&sp=rl&sv=2018-03-28&sr=f&sig=SZ0UBX47pXD0F1rmrOM%2BfcwbPVob8hlgFtIlN89micM%3D";
165+
var url = $"https://aka.ms/mlnet-resources/datasets/flower_photos_small_set.zip";
166166
Web.Download(url, imagesDownloadFolder, fileName);
167167
Compress.UnZip(Path.Join(imagesDownloadFolder, fileName), imagesDownloadFolder);
168168

samples/csharp/getting-started/DeepLearning_TensorFlowEstimator/ImageClassification.Train/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public static string DownloadImageSet(string imagesDownloadFolder)
8989

9090
//SMALL FLOWERS IMAGESET (200 files)
9191
string fileName = "flower_photos_small_set.zip";
92-
string url = $"https://mlnetfilestorage.file.core.windows.net/imagesets/flower_images/flower_photos_small_set.zip?st=2019-08-07T21%3A27%3A44Z&se=2030-08-08T21%3A27%3A00Z&sp=rl&sv=2018-03-28&sr=f&sig=SZ0UBX47pXD0F1rmrOM%2BfcwbPVob8hlgFtIlN89micM%3D";
92+
string url = $"https://aka.ms/mlnet-resources/datasets/flower_photos_small_set.zip";
9393
Web.Download(url, imagesDownloadFolder, fileName);
9494
Compress.UnZip(Path.Join(imagesDownloadFolder, fileName), imagesDownloadFolder);
9595

samples/fsharp/getting-started/DeepLearning_ImageClassification_Training/ImageClassification.Train/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ let loadImagesFromDirectory (path:string) (useDirectoryAsLabel:bool) =
6767
let main argv =
6868

6969
let fileName = "flower_photos_small_set.zip"
70-
let downloadUrl = "https://mlnetfilestorage.file.core.windows.net/imagesets/flower_images/flower_photos_small_set.zip?st=2019-08-07T21%3A27%3A44Z&se=2030-08-08T21%3A27%3A00Z&sp=rl&sv=2018-03-28&sr=f&sig=SZ0UBX47pXD0F1rmrOM%2BfcwbPVob8hlgFtIlN89micM%3D"
70+
let downloadUrl = "https://aka.ms/mlnet-resources/datasets/flower_photos_small_set.zip"
7171

7272
// Download Data
7373
let datasetPath =

0 commit comments

Comments
 (0)