tensorflow / decision-forests

A collection of state-of-the-art algorithms for the training, serving and interpretation of Decision Forest models in Keras.
Apache License 2.0
663 stars 110 forks source link

Intermediate colab is erroring out. See attached. #15

Closed stevewalker-de closed 3 years ago

stevewalker-de commented 3 years ago

5D7A75AC-80F3-4301-BC26-A465BB05CE43 0432A780-4473-49FC-8933-46B1D5065361

achoum commented 3 years ago

Thanks for the report.

There seems to be a transient problem with the SST2 dataset in TensorFlow Dataset.

The owners have been alerted. I'll update this issue once resolved.

achoum commented 3 years ago

The nightly version of TensorFlow Datasets does not have this issues. The colab has been updated with this temporary fix.

Existing codes can be updated by running the following commands before importing tensorflow_datasets:

!pip install tfds-nightly -U --quiet

import tensorflow_datasets as tfds
all_ds = tfds.load("glue/sst2")