Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- voidful/NMSQA
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
metrics:
|
7 |
+
- wer
|
8 |
+
pipeline_tag: automatic-speech-recognition
|
9 |
+
---
|
10 |
+
# Model Card for Model ID
|
11 |
+
|
12 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
13 |
+
|
14 |
+
This model was pretrained using facebook/hubert-base-ls960 model on NMSQA dataset. The task is Automatic Speech Recognition (ASR) in which the questions and context sentences are used.
|
15 |
+
This is a checkpoint with WER 14.36 on dev set.
|
16 |
+
|
17 |
+
## Model Details
|
18 |
+
|
19 |
+
### Model Description
|
20 |
+
|
21 |
+
<!-- Provide a longer summary of what this model is. -->
|
22 |
+
|
23 |
+
The input of the models are from NMSQA dataset. The task of the dataset is Spoken QA, but in this model I used the sentences for ASR.
|
24 |
+
The input audios are both from context and questions. This ASR model was trained on using training and dev set of NMSQA.
|
25 |
+
|
26 |
+
- **Developed by:** Merve Menevse
|
27 |
+
- **Model type:** Supervised ML
|
28 |
+
- **Language(s) (NLP):** English
|
29 |
+
- **Finetuned from model [optional]:** facebook/wav2vec2-base-960h
|
30 |
+
|
31 |
+
|
32 |
+
## Uses
|
33 |
+
|
34 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
35 |
+
The model should be used as fine-tuned model for wav2vec2.
|
36 |
+
|
37 |
+
## How to Get Started with the Model
|
38 |
+
|
39 |
+
from transformers import AutoModel
|
40 |
+
|
41 |
+
model = AutoModel.from_pretrained("menevsem/hubert-base-ls960-nmsqa-asr")
|
42 |
+
|
43 |
+
## Training Details
|
44 |
+
|
45 |
+
### Training Data
|
46 |
+
|
47 |
+
<!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
48 |
+
|
49 |
+
The model was trained using voidful/NMSQA train and dev set.
|
50 |
+
|
51 |
+
## Evaluation
|
52 |
+
|
53 |
+
For evalaution WER metric is used on dev set.
|