1
1
# GRU
2
+ Implemention for Empirical Evaluation of Gated Recurrent Neural Networks on Sequence Modeling. [ Read paper] ( https://arxiv.org/pdf/1412.3555.pdf )
2
3
3
4
Library Logo <--- ** FIXME**
4
5
@@ -11,9 +12,12 @@ Compare and evaluate recurrent neural networks (RNN) with different types of rec
11
12
- Long short-term memory (LSTM)
12
13
- Tanh
13
14
14
- Slide about your project (if it's available) <--- ** FIXME **
15
+ Slide about our project [ vietnamese ] ( https://docs.google.com/document/d/1GHZIDAyfCL2O-PVPVyQJdcQ8FxdkPGA4-AQd3cCYoMQ/edit?usp=sharing )
15
16
16
- Architecture Image <--- ** FIXME**
17
+ Architecture
18
+ <p align =" center " >
19
+ <img src='./assets/architecture.png' width="90%" class="center">
20
+ </p >
17
21
18
22
Advisors:
19
23
- Github: [ bangoc123] ( https://github.com/bangoc123 )
@@ -187,22 +191,22 @@ Epoch 10/10
187
191
188
192
```
189
193
190
- ### 4. Comments about these results
194
+ ### 4. Results
191
195
192
- - Base on the results of Training with 3 kinds of model, we can figure out that there are differences about the Accuaracy between them
196
+ - Base on the results of Training with 3 kinds of model, we can figure out that there are differences about the Accuracy between them
193
197
+ Both GRU and LSTM have high efficiency with the highest val_accuracy is 0.8936 and 0.8795 , respectively.
194
198
+ Tanh is the opposite, the val_accuracy is really low with just around 0.54
195
199
- The results clearly demonstrated the superiority of the gated units; both the LSTM unit and GRU, over the traditional tanh unit.
196
200
- However, we could not make concrete conclusion on which of the two gating units was better.
197
201
198
- ## VI. Running Test
202
+ <!-- ## VI. Running Test
199
203
200
204
When you want to modify the model, you need to run the test to make sure your change does not affect the whole system.
201
205
202
206
In the `./folder-name` **(FIXME)** folder please run:
203
207
204
208
```bash
205
209
pytest
206
- ```
210
+ ``` -->
207
211
208
212
0 commit comments