freeCodeCamp/curriculum/challenges/english/11-machine-learning-with-python/tensorflow/natural-language-processing-with-rnns-create-a-play-generator.md
Oliver Eyton-Williams 0bd52f8bd1
Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

464 B

id, title, challengeType, videoId
id title challengeType videoId
5e8f2f13c4cdbe86b5c72da0 Natural Language Processing With RNNs: Create a Play Generator 11 j5xsxjq_Xk8

--question--

--text--

Fill in the blanks below to create the training examples for the RNN:

char_dataset = tf.data.__A__.__B__(text_as_int)

--answers--

A: DataSet

B: from_tensor_slices


A: data

B: from_tensors


A: DataSet

B: from_generator

--video-solution--

1