freeCodeCamp/curriculum/challenges/chinese/11-machine-learning-with-python/tensorflow/natural-language-processing-with-rnns-create-a-play-generator.md
Randell Dawson 94f0cf0ef8
chore(learn): Remove remaining isHidden keys from frontmatter (English and Chinese challenges) (#39809)
* fix: remove isHidden key from tool template

* fix: removed isHidden key from English challenges

* fix: remove isHidden key from Chinese challenges
2020-10-08 14:18:47 +02:00

538 B

id, challengeType, videoId
id challengeType videoId
5e8f2f13c4cdbe86b5c72da0 11 j5xsxjq_Xk8

Description

Tests

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

    ```py
    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`
  solution: 1