fix(curriculum): fix casing of Dense keyword (#44791)

This commit is contained in:
sidemt
2022-01-16 02:56:45 +09:00
committed by GitHub
parent e87a0f8f75
commit d5543cd692

View File

@ -20,7 +20,7 @@ Fill in the blanks below to create the model for the RNN:
model = __A__.keras.Sequential([
__A__.keras.layers.__B__(88584, 32),
__A__.keras.layers.__C__(32),
__A__.keras.layers.DENSE(1, activation='sigmoid')
__A__.keras.layers.Dense(1, activation='sigmoid')
])
```