menevsem commited on
Commit
19570c9
1 Parent(s): 09c6a43

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
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-base-960h 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 10.58 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/wav2vec2-base-960h-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.