Update README.md
Browse files
README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
datasets:
|
|
|
|
| 4 |
- rajpurkar/squad
|
| 5 |
- google-research-datasets/natural_questions
|
| 6 |
- hotpotqa/hotpot_qa
|
|
@@ -11,13 +12,13 @@ pipeline_tag: question-answering
|
|
| 11 |
- Project Type: Bring your own method
|
| 12 |
|
| 13 |
## Structure
|
| 14 |
-
- `data/` contains the data used for the project
|
| 15 |
-
- `distilbert.py` contains the code for the DistilBERT model and the Dataset.
|
| 16 |
- `distilbert.ipynb` contains the creation and training of the DistilBERT model
|
| 17 |
- `distilbert.model` is the distilbert model
|
| 18 |
- `distilbert_reuse.model` is the question answering model
|
| 19 |
-
- `load_data.py` contains the code for loading the data and preprocessing it.
|
| 20 |
-
- `qa_model.py` contains the code for thee different QA models.
|
| 21 |
- `qa_model.ipynb` contains the creation and training of the QA models.
|
| 22 |
- `requirements.txt` contains the requirements for the project
|
| 23 |
- `utils.py` contains some helper functions for the project. It contains the functions to evaluate the models and a way to visualise the trained parameters for each model.
|
|
@@ -63,7 +64,7 @@ Now for the Question Answering model.
|
|
| 63 |
* Target for Error Metric:
|
| 64 |
* EM: 0.6
|
| 65 |
* F-1: 0.7
|
| 66 |
-
* Achieved value: I almost achieved the target for both of the measurements.
|
| 67 |
* EM: 0.52
|
| 68 |
* F-1: 0.67
|
| 69 |
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
datasets:
|
| 4 |
+
- Skylion007/openwebtext
|
| 5 |
- rajpurkar/squad
|
| 6 |
- google-research-datasets/natural_questions
|
| 7 |
- hotpotqa/hotpot_qa
|
|
|
|
| 12 |
- Project Type: Bring your own method
|
| 13 |
|
| 14 |
## Structure
|
| 15 |
+
- `data/` contains the data used for the project
|
| 16 |
+
- `distilbert.py` contains the code for the DistilBERT model and the Dataset.
|
| 17 |
- `distilbert.ipynb` contains the creation and training of the DistilBERT model
|
| 18 |
- `distilbert.model` is the distilbert model
|
| 19 |
- `distilbert_reuse.model` is the question answering model
|
| 20 |
+
- `load_data.py` contains the code for loading the data and preprocessing it.
|
| 21 |
+
- `qa_model.py` contains the code for thee different QA models.
|
| 22 |
- `qa_model.ipynb` contains the creation and training of the QA models.
|
| 23 |
- `requirements.txt` contains the requirements for the project
|
| 24 |
- `utils.py` contains some helper functions for the project. It contains the functions to evaluate the models and a way to visualise the trained parameters for each model.
|
|
|
|
| 64 |
* Target for Error Metric:
|
| 65 |
* EM: 0.6
|
| 66 |
* F-1: 0.7
|
| 67 |
+
* Achieved value: I almost achieved the target for both of the measurements.
|
| 68 |
* EM: 0.52
|
| 69 |
* F-1: 0.67
|
| 70 |
|