Files
freeCodeCamp/curriculum/challenges/english/11-machine-learning-with-python/tensorflow/natural-language-processing-with-rnns-create-a-play-generator.md
miyaliu666 3ea2fe4f77 feat(i18n,curriculum): add Bilibili ids for Chinese (#43564)
Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2021-10-01 09:54:12 +05:30

606 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e8f2f13c4cdbe86b5c72da0 Natural Language Processing With RNNs: Create a Play Generator 11 j5xsxjq_Xk8
aid bvid cid
720525759 BV1xQ4y1r7tw 409137674
natural-language-processing-with-rnns-create-a-play-generator

--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