Update README.md
Browse files
README.md
CHANGED
@@ -1,12 +1,7 @@
|
|
1 |
---
|
2 |
tags:
|
3 |
- allennlp
|
4 |
-
|
5 |
-
|
6 |
-
# TODO: Fill this model card
|
7 |
-
---
|
8 |
-
tags:
|
9 |
-
- allennlp
|
10 |
---
|
11 |
|
12 |
This is an implementation of the BiDAF model with ELMo embeddings. The basic layout is pretty simple: encode words as a combination of word embeddings and a character-level encoder, pass the word representations through a bi-LSTM/GRU, use a matrix of attentions to put question information into the passage word representations (this is the only part that is at all non-standard), pass this through another few layers of bi-LSTMs/GRUs, and do a softmax over span start and span end.
|
|
|
1 |
---
|
2 |
tags:
|
3 |
- allennlp
|
4 |
+
- question answering
|
|
|
|
|
|
|
|
|
|
|
5 |
---
|
6 |
|
7 |
This is an implementation of the BiDAF model with ELMo embeddings. The basic layout is pretty simple: encode words as a combination of word embeddings and a character-level encoder, pass the word representations through a bi-LSTM/GRU, use a matrix of attentions to put question information into the passage word representations (this is the only part that is at all non-standard), pass this through another few layers of bi-LSTMs/GRUs, and do a softmax over span start and span end.
|