Browse Source

RetainImageClassifier.cs: Fixed download url

tags/v0.12
Eli Belash 6 years ago
parent
commit
33286b99e9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/TensorFlowNET.Examples/ImageProcessing/RetrainImageClassifier.cs

+ 1
- 1
test/TensorFlowNET.Examples/ImageProcessing/RetrainImageClassifier.cs View File

@@ -508,7 +508,7 @@ namespace TensorFlowNET.Examples
{
// get a set of images to teach the network about the new classes
string fileName = "flower_photos.tgz";
string url = $"http://download.tf.org/example_images/{fileName}";
string url = $"http://download.tensorflow.org/example_images/{fileName}";
Web.Download(url, data_dir, fileName);
Compress.ExtractTGZ(Path.Join(data_dir, fileName), data_dir);



Loading…
Cancel
Save