Notice
Recent Posts
Recent Comments
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- 프로그래머스
- 자연어처리
- leetcode
- Baekjoon
- 우분투
- Kaggle
- github
- 맥북
- Git
- 편스토랑
- AI 경진대회
- 편스토랑 우승상품
- gs25
- SW Expert Academy
- 프로그래머스 파이썬
- 코로나19
- 백준
- 캐치카페
- PYTHON
- Real or Not? NLP with Disaster Tweets
- ubuntu
- 파이썬
- Docker
- programmers
- ChatGPT
- 금융문자분석경진대회
- dacon
- hackerrank
- 더현대서울 맛집
- 데이콘
Archives
- Today
- Total
솜씨좋은장씨
[Kaggle DAY02]Real or Not? NLP with Disaster Tweets! 본문
Kaggle/Real or Not? NLP with Disaster Tweets
[Kaggle DAY02]Real or Not? NLP with Disaster Tweets!
솜씨좋은장씨 2020. 2. 14. 22:07728x90
반응형
Kaggle 2회차 도전!
오늘은 데이터 전처리는 그대로 두고
저번 LSTM 모델을 Bi-LSTM으로만 바꾸어서 시도해보았습니다.
첫번째 시도
model = Sequential()
model.add(Embedding(max_words, 100, input_length=max_len))
model.add(Bidirectional(LSTM(128)))
model.add(Dropout(0.2))
model.add(Dense(2, activation='sigmoid'))
model.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])
history = model.fit(X_train_vec, y_train, epochs=3, batch_size=32, validation_split=0.1)

결과

두번째 시도
model2 = Sequential()
model2.add(Embedding(max_words, 100, input_length=max_len))
model2.add(Bidirectional(LSTM(128)))
model2.add(Dropout(0.2))
model2.add(Dense(2, activation='sigmoid'))
model2.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])
history2 = model2.fit(X_train_vec, y_train, epochs=1, batch_size=32, validation_split=0.1)

결과

세번째 시도
model2 = Sequential()
model2.add(Embedding(max_words, 100, input_length=max_len))
model2.add(Bidirectional(LSTM(64)))
model2.add(Dropout(0.2))
model2.add(Dense(2, activation='sigmoid'))
model2.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])
history2 = model2.fit(X_train_vec, y_train, epochs=1, batch_size=32, validation_split=0.1)
결과

네번째 시도
model2 = Sequential()
model2.add(Embedding(max_words, 100, input_length=max_len))
model2.add(Bidirectional(LSTM(32)))
model2.add(Dropout(0.1))
model2.add(Dense(2, activation='sigmoid'))
model2.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])
history2 = model2.fit(X_train_vec, y_train, epochs=1, batch_size=32, validation_split=0.1)
결과

다섯번째 시도
model2 = Sequential()
model2.add(Embedding(max_words, 100, input_length=max_len))
model2.add(Bidirectional(LSTM(32)))
model2.add(Dropout(0.1))
model2.add(Dense(2, activation='sigmoid'))
model2.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])
history2 = model2.fit(X_train_vec, y_train, epochs=1, batch_size=16, validation_split=0.1)
결과

'Kaggle > Real or Not? NLP with Disaster Tweets' 카테고리의 다른 글
| [Kaggle DAY05]Real or Not? NLP with Disaster Tweets! (0) | 2020.02.18 |
|---|---|
| [Kaggle DAY04]Real or Not? NLP with Disaster Tweets! (0) | 2020.02.16 |
| [Kaggle DAY03]Real or Not? NLP with Disaster Tweets! (0) | 2020.02.15 |
| [Kaggle DAY01]Real or Not? NLP with Disaster Tweets! (0) | 2020.02.13 |
| Real or Not? NLP with Disaster Tweets! 도전! (0) | 2020.02.08 |
Comments