RNN(Vanilla),RNN(LSTM),RNN(GRU) Performance Test
ANN lstmRNN gruRNN performance test Image source Comparison of English character recognition performance among RNN(Vanilla), RNN(LSTM), and RNN(GRU). Hyungwon Yang 04.19.17 NAMZ Labs Task Tensorflow에서 제공하는 기본적인 RNN방식과 LSTM cell, 그리고 GRU cell을 적용한 RNN방식 총 3가지 모델의 성능을 비교한다. 영어 character 단위의 데이터셋을 이용하여 훈련한 뒤, 훈련에 사용하지 않은 테스트 셋으로 결과를 추출하여 세 모델의 성능을 비교한다. Training Corpus Project Gutenberg’s The Divine Comedy, Complete, by Dante Alighieri This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.org The part of the corpus was extracted for training. Experimental Setting. Python 3.5.3 Tnesorflow 1.0.0 Mac OSX sierra 10.12.4 Data Preprocessing. 이전 report에서 보고하였던 것으로 갈음한다. RNN(Vanilla) Training Hidden unit의 개수는 50, 100, 200으로 총 3번에 걸쳐 실행하였으며, 자세한 설정사항은 아래와 같다. 설정...