Created
May 5, 2020 18:58
-
-
Save a7v8x/c5a8e34cfde2e924399de2bf2148865c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow_datasets as tfds | |
(ds_train, ds_test), ds_info = tfds.load('imdb_reviews', | |
split = (tfds.Split.TRAIN, tfds.Split.TEST), | |
as_supervised=True, | |
with_info=True) | |
print('info', ds_info) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment