tensorflow_privacy/tutorials/walkthrough/BUILD
Fabien Hertschuh 5493a3baf0 Explicitly import estimator from tensorflow as a separate import instead of
accessing it via tf.estimator and depend on the tensorflow estimator target.

PiperOrigin-RevId: 438419860
2022-03-30 16:05:01 -07:00

14 lines
353 B
Text

load("@rules_python//python:defs.bzl", "py_binary")
licenses(["notice"])
py_binary(
name = "mnist_scratch",
srcs = ["mnist_scratch.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
"//third_party/py/tensorflow:tensorflow_compat_v1_estimator",
"//third_party/py/tensorflow:tensorflow_estimator",
],
)