freeCodeCamp/curriculum/challenges/english/11-machine-learning-with-python/tensorflow/natural-language-processing-with-rnns-create-a-play-generator.english.md
Oliver Eyton-Williams bd68b70f3d
Feat: hide blocks not challenges (#39504)
* fix: remove isHidden flag from frontmatter

* fix: add isUpcomingChange

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

* feat: hide blocks not challenges

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
2020-09-03 15:07:40 -07:00

610 B

id, title, challengeType, videoId
id title challengeType videoId
5e8f2f13c4cdbe86b5c72da0 Natural Language Processing With RNNs: Create a Play Generator 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