Skip to content

Commit 4222bd9

Browse files
committed
Replace inception5h references with inception_v1
1 parent 90c6308 commit 4222bd9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

WORKSPACE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ load("//tensorflow:workspace.bzl", "tf_workspace")
4141
tf_workspace()
4242

4343
new_http_archive(
44-
name = "inception5h",
44+
name = "inception_v1",
4545
build_file = "models.BUILD",
46-
sha256 = "d13569f6a98159de37e92e9c8ec4dae8f674fbf475f69fe6199b514f756d4364",
46+
sha256 = "7efe12a8363f09bc24d7b7a450304a15655a57a7751929b2c1593a71183bb105",
4747
urls = [
48-
"http://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip",
49-
"http://download.tensorflow.org/models/inception5h.zip",
48+
"http://storage.googleapis.com/download.tensorflow.org/models/inception_v1.zip",
49+
"http://download.tensorflow.org/models/inception_v1.zip",
5050
],
5151
)
5252

tensorflow/examples/android/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ android_binary(
9292
filegroup(
9393
name = "external_assets",
9494
srcs = [
95-
"@inception5h//:model_files",
95+
"@inception_v1//:model_files",
9696
"@mobile_ssd//:model_files",
9797
"@speech_commands//:model_files",
9898
"@stylize//:model_files",

tensorflow/examples/android/download-models.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
// hard coded model files
1111
// LINT.IfChange
12-
def models = ['inception5h.zip',
12+
def models = ['inception_v1.zip',
1313
'object_detection/ssd_mobilenet_v1_android_export.zip',
1414
'stylize_v1.zip',
1515
'speech_commands_conv_actions.zip']

0 commit comments

Comments
 (0)