Skip to content

Commit d7fd3be

Browse files
authored
Fixed golbin#11 레이어 오타 수정
1 parent 1272ab0 commit d7fd3be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

05 - CNN/02 - tf.layers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
L3 = tf.contrib.layers.flatten(L2)
3030
L3 = tf.layers.dense(L3, 256, activation=tf.nn.relu)
31-
L2 = tf.layers.dropout(L2, 0.5, is_training)
31+
L3 = tf.layers.dropout(L3, 0.5, is_training)
3232

3333
model = tf.layers.dense(L3, 10, activation=None)
3434

0 commit comments

Comments
 (0)