Files
freeCodeCamp/curriculum/challenges/espanol/11-machine-learning-with-python/tensorflow/creating-a-convolutional-neural-network.md
2022-03-16 21:09:26 +01:00

885 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e8f2f13c4cdbe86b5c72d98 Creando una Red Neural Convolucional 11 kfv0K8MtkIc
aid bvid cid
420605824 BV1p341127wW 409131869
creating-a-convolutional-neural-network

--question--

--text--

Rellena los siguientes espacios en blanco para completar la arquitectura para una red neuronal convolucional:

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

--video-solution--

3