Files
freeCodeCamp/curriculum/challenges/chinese/11-machine-learning-with-python/tensorflow/neural-networks-creating-a-model.md

680 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e8f2f13c4cdbe86b5c72d95 神经网络:创建模型 11 K8bz1bmOCTw
aid bvid cid
848109040 BV1EL4y1878f 409130886
neural-networks-creating-a-model

--question--

--text--

填写下面的空白,建立一个密集层的顺序模型。

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

--video-solution--

1