Skip to content

Commit

Permalink
#28 : 오타 수정 , 번역 참가자 정보 기입
Browse files Browse the repository at this point in the history
  • Loading branch information
mike2ox committed Sep 10, 2018
1 parent 2aaa4a3 commit e0b38e7
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ from keras import backend as K
encoder_inputs = Input(shape=(None, num_encoder_tokens))
encoder = LSTM(latent_dim, return_state=True)
encoder_outputs, state_h, state_c = encoder(encoder_inputs)
states = [state_h, state_c]
states = [state_h, state_c]


# 한 번에 한 개의 time step이 진행되도록 decoder를 설정
Expand Down Expand Up @@ -306,4 +306,8 @@ model.fit([encoder_input_data, decoder_input_data], decoder_target_data,
validation_split=0.2)
```

만약 추가적인 의문점이 있다면, [Twitter](https://twitter.com/fchollet)로 연락해주세요.
만약 추가적인 의문점이 있다면, [Twitter](https://twitter.com/fchollet)로 연락해주세요.

> 이 글은 2018 컨트리뷰톤에서 [`Contributue to Keras`](https://github.com/KerasKorea/KEKOxTutorial) 프로젝트로 진행했습니다.
> Translator : [mike2ox](https://github.com/mike2ox) (Moonhyeok Song)
> Translator Email : <firefinger07@gmail.com>

0 comments on commit e0b38e7

Please sign in to comment.