Bidirectional LSTM on IMDB Author: fchollet Date created: 2020/05/03 Last modified: 2020/05/03 Description: Train a 2-layer bidirectional LSTM on the IMDB movie review sentiment classification dataset. - Keras - Colab - Github 라이브러리 로드 import numpy as np from tensorflow import keras from tensorflow.keras import layers max_features = 20000 # 상위 20000개 단어들만을 사용하겠습니다. maxlen = 200 # 영화 리뷰 중 처음 200단..