ray/doc/source/ray-air/examples/BUILD
Amog Kamsetty e8440cf52b
[AIR] Incremental Learning Example (#24420)
Example for domain incremental learning on Permuted MNIST Dataset with naive strategy
2022-05-26 12:28:28 -07:00

30 lines
No EOL
928 B
Text

load("//bazel:python.bzl", "py_test_run_all_notebooks")
filegroup(
name = "air_examples",
srcs = glob(["*.ipynb"]),
visibility = ["//doc:__subpackages__"]
)
# --------------------------------------------------------------------
# Test all doc/source/ray-air/examples notebooks.
# --------------------------------------------------------------------
py_test_run_all_notebooks(
size = "large",
include = ["*.ipynb"],
exclude = ["huggingface_text_classification.ipynb", "torch_incremental_learning.ipynb"],
data = ["//doc/source/ray-air/examples:air_examples"],
tags = ["exclusive", "team:ml", "ray_air"],
)
# GPU Tests
py_test_run_all_notebooks(
size = "large",
include = ["huggingface_text_classification.ipynb", "torch_incremental_learning.ipynb"],
exclude = [],
data = ["//doc/source/ray-air/examples:air_examples"],
tags = ["exclusive", "team:ml", "gpu", "ray_air"],
)