Files
freeCodeCamp/curriculum/challenges/english/11-machine-learning-with-python/tensorflow/creating-a-convolutional-neural-network.english.md
Kristofer Koishigawa f967b279a7 fix(curriculum): standardize fill-in-the-blank format and typos (#39011)
This PR changes the format of earlier fill-in-the-blank questions/answers to the one used in later questions. It also fixes a few typos.
2020-06-06 15:21:34 +05:30

951 B

id, title, challengeType, isHidden, videoId
id title challengeType isHidden videoId
5e8f2f13c4cdbe86b5c72d98 Creating a Convolutional Neural Network 11 true kfv0K8MtkIc

Description

Tests

question:
  text: |
    Fill in the blanks below to complete the architecture for a convolutional neural network:

    ```py
    model = models.__A__()
    model.add(layers.__B__(32, (3, 3), activation='relu', input_shape=(32, 32, 3)))
    model.add(layers.__C__(2, 2))
    model.add(layers.__B__(64, (3, 3), activation='relu'))
    model.add(layers.__C__(2, 2))
    model.add(layers.__B__(32, (3, 3), activation='relu'))
    model.add(layers.__C__(2, 2))
    ```

  answers:
    - |
      A: `Sequential`

      B: `add`

      C: `Wrapper`
    - |
      A: `keras`

      B: `Cropping2D`

      C: `AlphaDropout`
    - |
      A: `Sequential`

      B: `Conv2D`

      C: `MaxPooling2D`
  solution: 3