Retrospect/🥇 Daily

[TIL] 2020-11-17

posted by sangmin

💪 Today I Learned

Deep Learning

  • mnist DNN architecture

    mnist
  • define model

    model = Sequential() 
    model.add(Flatten(input_shape=(28, 28)))
    model.add(Dense(128, activation='relu')) 
    model.add(Dropout(rate=0.4))
    model.add(Dense(64, activation='relu'))
    model.add(Dense(32, activation='relu'))
    model.add(Dense(10, activation='softmax'))

🏃‍♂️ 한마디

11주차 딥러닝 과제 끝.

'Retrospect > 🥇 Daily' 카테고리의 다른 글

[Plan] 2020-11-21  (0) 2021.01.20
[TIL] 2020-11-18  (0) 2021.01.20
[TIL] 2020-11-16  (0) 2021.01.20
[TIL] 2020-11-13  (0) 2021.01.20
[TIL] 2020-11-12  (0) 2021.01.20