Files
freeCodeCamp/curriculum/challenges/chinese/11-machine-learning-with-python/tensorflow/neural-networks-creating-a-model.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

716 B

id, challengeType, videoId
id challengeType videoId
5e8f2f13c4cdbe86b5c72d95 11 K8bz1bmOCTw

Description

Tests

question:
  text: |
    Fill in the blanks below to build a sequential model of dense layers:

    ```py
    model = __A__.__B__([
        __A__.layers.Flatten(input_shape=(28, 28)),
        __A__.layers.__C__(128, activation='relu'),
        __A__.layers.__C__(10, activation='softmax')
    ])
    ```

  answers:
    - |
      A: `keras`

      B: `Sequential`

      C: `Dense`
    - |
      A: `tf`

      B: `Sequential`

      C: `Categorical`
    - |
      A: `keras`

      B: `sequential`

      C: `dense`
  solution: 1