STT-tensorflow/tensorflow/lite/tutorials/BUILD
Hye Soo Yang bce28ef8f8 PY3 migration - Set py targets to "PY3" in tensorflow/lite/...
PiperOrigin-RevId: 284900555
Change-Id: I73157bf2570d2f66600bffc2cf31c42ac8de4cc5
2019-12-10 19:46:00 -08:00

21 lines
353 B
Python

# Example Estimator model
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])
py_binary(
name = "mnist_tflite",
srcs = [
"dataset.py",
"mnist_tflite.py",
],
python_version = "PY3",
deps = [
"//tensorflow:tensorflow_py",
],
)