Skip to content

Commit 70aafa7

Browse files
committedAug 28, 2019
ObjectDetection: Fixed download url
1 parent 8347f61 commit 70aafa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/TensorFlowNET.Examples/ImageProcessing/ObjectDetection.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void Predict(Session sess)
8484
public void PrepareData()
8585
{
8686
// get model file
87-
string url = "http://download.tf.org/models/object_detection/ssd_mobilenet_v1_coco_2018_01_28.tar.gz";
87+
string url = "http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_2018_01_28.tar.gz";
8888
Web.Download(url, modelDir, "ssd_mobilenet_v1_coco.tar.gz");
8989

9090
Compress.ExtractTGZ(Path.Join(modelDir, "ssd_mobilenet_v1_coco.tar.gz"), "./");

0 commit comments

Comments
 (0)
Please sign in to comment.