Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public static string DownloadImageSet(string imagesDownloadFolder)

//SINGLE SMALL FLOWERS IMAGESET (200 files)
const string fileName = "flower_photos_small_set.zip";
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";
var url = $"https://aka.ms/mlnet-resources/datasets/flower_photos_small_set.zip";
Web.Download(url, imagesDownloadFolder, fileName);
Compress.UnZip(Path.Join(imagesDownloadFolder, fileName), imagesDownloadFolder);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public static string DownloadImageSet(string imagesDownloadFolder)

//SMALL FLOWERS IMAGESET (200 files)
string fileName = "flower_photos_small_set.zip";
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";
string url = $"https://aka.ms/mlnet-resources/datasets/flower_photos_small_set.zip";
Web.Download(url, imagesDownloadFolder, fileName);
Compress.UnZip(Path.Join(imagesDownloadFolder, fileName), imagesDownloadFolder);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ let loadImagesFromDirectory (path:string) (useDirectoryAsLabel:bool) =
let main argv =

let fileName = "flower_photos_small_set.zip"
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"
let downloadUrl = "https://aka.ms/mlnet-resources/datasets/flower_photos_small_set.zip"

// Download Data
let datasetPath =
Expand Down