16 lines
653 B
Python
16 lines
653 B
Python
"""Loads the tflite_ovic_testdata library, used by TF."""
|
|
|
|
load("//third_party:repo.bzl", "tf_http_archive")
|
|
|
|
def repo():
|
|
tf_http_archive(
|
|
name = "tflite_ovic_testdata",
|
|
build_file = "//third_party/tflite_ovic_testdata:tflite_ovic_testdata.BUILD",
|
|
sha256 = "033c941b7829b05ca55a124a26a6a0581b1ececc154a2153cafcfdb54f80dca2",
|
|
strip_prefix = "ovic",
|
|
urls = [
|
|
"https://storage.googleapis.com/mirror.tensorflow.org/storage.googleapis.com/download.tensorflow.org/data/ovic_2019_04_30.zip",
|
|
"https://storage.googleapis.com/download.tensorflow.org/data/ovic_2019_04_30.zip",
|
|
],
|
|
)
|