Matthew Johnson 323be694a7 source sync
PiperOrigin-RevId: 222448341
2018-11-21 20:22:47 -08:00

69 lines
1.5 KiB
Python

# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
licenses(["notice"]) # Apache 2
py_binary(
name = "interactive",
srcs = ["interactive.py"],
deps = ["//jax:libjax"],
)
py_library(
name = "datasets",
srcs = ["datasets.py"],
)
py_binary(
name = "mnist_classifier_fromscratch",
srcs = ["mnist_classifier_fromscratch.py"],
deps = [
":datasets",
"//jax:libjax",
],
)
py_binary(
name = "mnist_classifier",
srcs = ["mnist_classifier.py"],
deps = [
":datasets",
"//jax:libjax",
"//jax:minmax",
"//jax:stax",
],
)
py_binary(
name = "mnist_vae",
srcs = ["mnist_vae.py"],
deps = [
":datasets",
"//jax:libjax",
"//jax:minmax",
"//jax:stax",
],
)
py_binary(
name = "resnet50",
srcs = ["resnet50.py"],
deps = [
":datasets",
"//jax:libjax",
"//jax:minmax",
"//jax:stax",
],
)