[AIR] Enable other notebooks previously marked with # REGRESSION (#26896)

Co-authored-by: Richard Liaw <rliaw@berkeley.edu>
This commit is contained in:
Jiao 2022-07-25 13:40:21 -07:00 committed by GitHub
parent 5030a4c1d3
commit 5315f1e643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 7 deletions

View file

@ -43,9 +43,7 @@ py_test_run_all_notebooks(
py_test_run_all_notebooks(
size = "large",
include = ["huggingface_text_classification.ipynb"],
exclude = [
"torch_incremental_learning.ipynb" # REGRESSION!
],
exclude = [],
data = ["//doc/source/ray-air/examples:air_examples"],
tags = ["exclusive", "team:ml", "gpu", "ray_air"],
)

View file

@ -1087,7 +1087,7 @@
"# Number of data parallel workers to use for training.\n",
"num_workers = 1\n",
"# Whether to use GPU or not.\n",
"use_gpu = False\n",
"use_gpu = ray.available_resources().get(\"GPU\", 0) > 0\n",
"\n",
"permuted_mnist = PermutedMNISTStream(n_tasks=n_tasks)\n",
"train_stream = permuted_mnist.generate_train_stream()\n",

View file

@ -19,9 +19,7 @@ py_test_run_all_notebooks(
exclude = [
"pbt_ppo_example.ipynb",
"tune-xgboost.ipynb",
"nyc_taxi_basic_processing.ipynb", # REGRESSION
"ocr_example.ipynb", # REGRESSION
"sigopt_example.ipynb", # REGRESSION
"sigopt_example.ipynb", # REGRESSION: no credentials
],
data = ["//doc/source/tune/examples:tune_examples"],
tags = ["exclusive", "team:ml"],