1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| # 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",
| ],
| deps = [
| "//tensorflow:tensorflow_py",
| ],
| )
|
|