Vijay Vasudevan | 8cc567b | 2016-05-26 11:05:13 -0800 | [diff] [blame] | 1 | workspace(name = "org_tensorflow") |
| 2 | |
Justine Tunney | 02f276c | 2017-02-03 17:13:49 -0800 | [diff] [blame] | 3 | http_archive( |
| 4 | name = "io_bazel_rules_closure", |
Yifei Feng | 22f3a97 | 2018-04-23 21:19:14 -0700 | [diff] [blame] | 5 | sha256 = "a38539c5b5c358548e75b44141b4ab637bba7c4dc02b46b1f62a96d6433f56ae", |
| 6 | strip_prefix = "rules_closure-dbb96841cc0a5fb2664c37822803b06dab20c7d1", |
Justine Tunney | 02f276c | 2017-02-03 17:13:49 -0800 | [diff] [blame] | 7 | urls = [ |
Yifei Feng | 22f3a97 | 2018-04-23 21:19:14 -0700 | [diff] [blame] | 8 | "https://mirror.bazel.build/github.com/bazelbuild/rules_closure/archive/dbb96841cc0a5fb2664c37822803b06dab20c7d1.tar.gz", |
| 9 | "https://github.com/bazelbuild/rules_closure/archive/dbb96841cc0a5fb2664c37822803b06dab20c7d1.tar.gz", # 2018-04-13 |
Justine Tunney | 02f276c | 2017-02-03 17:13:49 -0800 | [diff] [blame] | 10 | ], |
| 11 | ) |
| 12 | |
| 13 | load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories") |
| 14 | |
| 15 | closure_repositories() |
| 16 | |
Ilya Biryukov | 9e651e4 | 2018-03-22 05:33:42 -0700 | [diff] [blame] | 17 | # We must check the bazel version before trying to parse any other BUILD |
| 18 | # files, in case the parsing of those build files depends on the bazel |
| 19 | # version we require here. |
| 20 | load("//tensorflow:version_check.bzl", "check_bazel_version_at_least") |
| 21 | check_bazel_version_at_least("0.10.0") |
| 22 | |
Martin Wicke | bc456e3 | 2017-03-23 12:31:16 -0800 | [diff] [blame] | 23 | load("//tensorflow:workspace.bzl", "tf_workspace") |
Shanqing Cai | efd40e5 | 2017-01-08 20:31:30 -0800 | [diff] [blame] | 24 | |
Michael Case | 5105350 | 2018-06-05 17:47:19 -0700 | [diff] [blame^] | 25 | load("//third_party/android:android_configure.bzl", "android_configure") |
| 26 | android_configure(name="local_config_android") |
| 27 | load("@local_config_android//:android.bzl", "android_workspace") |
| 28 | android_workspace() |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 29 | |
Kiril Gorovoy | 5b5976a | 2016-03-10 14:06:08 -0800 | [diff] [blame] | 30 | # Please add all new TensorFlow dependencies in workspace.bzl. |
Kiril Gorovoy | 77da168 | 2016-02-24 18:02:16 -0800 | [diff] [blame] | 31 | tf_workspace() |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 32 | |
Dan Smilkov | f0e9bd3 | 2016-11-09 12:53:00 -0800 | [diff] [blame] | 33 | new_http_archive( |
Michael Case | d90054e | 2018-02-07 14:36:00 -0800 | [diff] [blame] | 34 | name = "inception_v1", |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 35 | build_file = "models.BUILD", |
Michael Case | d90054e | 2018-02-07 14:36:00 -0800 | [diff] [blame] | 36 | sha256 = "7efe12a8363f09bc24d7b7a450304a15655a57a7751929b2c1593a71183bb105", |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 37 | urls = [ |
Michael Case | d90054e | 2018-02-07 14:36:00 -0800 | [diff] [blame] | 38 | "http://storage.googleapis.com/download.tensorflow.org/models/inception_v1.zip", |
| 39 | "http://download.tensorflow.org/models/inception_v1.zip", |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 40 | ], |
Dan Smilkov | f0e9bd3 | 2016-11-09 12:53:00 -0800 | [diff] [blame] | 41 | ) |
| 42 | |
Andrew Harp | a30b992 | 2016-11-28 15:41:52 -0800 | [diff] [blame] | 43 | new_http_archive( |
A. Unique TensorFlower | 53aabd5 | 2017-08-09 18:18:26 -0700 | [diff] [blame] | 44 | name = "mobile_ssd", |
| 45 | build_file = "models.BUILD", |
| 46 | sha256 = "bddd81ea5c80a97adfac1c9f770e6f55cbafd7cce4d3bbe15fbeb041e6b8f3e8", |
| 47 | urls = [ |
| 48 | "http://storage.googleapis.com/download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_android_export.zip", |
| 49 | "http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_android_export.zip", |
| 50 | ], |
| 51 | ) |
| 52 | |
| 53 | new_http_archive( |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 54 | name = "mobile_multibox", |
| 55 | build_file = "models.BUILD", |
| 56 | sha256 = "859edcddf84dddb974c36c36cfc1f74555148e9c9213dedacf1d6b613ad52b96", |
| 57 | urls = [ |
| 58 | "http://storage.googleapis.com/download.tensorflow.org/models/mobile_multibox_v1a.zip", |
| 59 | "http://download.tensorflow.org/models/mobile_multibox_v1a.zip", |
| 60 | ], |
Andrew Harp | a30b992 | 2016-11-28 15:41:52 -0800 | [diff] [blame] | 61 | ) |
| 62 | |
Andrew Harp | 6426c4e | 2017-01-11 14:05:52 -0800 | [diff] [blame] | 63 | new_http_archive( |
Justine Tunney | 52b4d47 | 2017-05-17 16:13:33 -0700 | [diff] [blame] | 64 | name = "stylize", |
| 65 | build_file = "models.BUILD", |
| 66 | sha256 = "3d374a730aef330424a356a8d4f04d8a54277c425e274ecb7d9c83aa912c6bfa", |
| 67 | urls = [ |
| 68 | "http://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip", |
| 69 | "http://download.tensorflow.org/models/stylize_v1.zip", |
| 70 | ], |
Dan Smilkov | 38a4afc | 2016-08-31 11:56:58 -0800 | [diff] [blame] | 71 | ) |
Pete Warden | 7d01f89 | 2017-08-18 09:32:30 -0700 | [diff] [blame] | 72 | |
| 73 | new_http_archive( |
| 74 | name = "speech_commands", |
| 75 | build_file = "models.BUILD", |
| 76 | sha256 = "c3ec4fea3158eb111f1d932336351edfe8bd515bb6e87aad4f25dbad0a600d0c", |
| 77 | urls = [ |
| 78 | "http://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip", |
| 79 | "http://download.tensorflow.org/models/speech_commands_v0.01.zip", |
| 80 | ], |
| 81 | ) |