jarvisx17 commited on
Commit
5cee731
1 Parent(s): a6a340f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -31
README.md CHANGED
@@ -1,31 +0,0 @@
1
- ---
2
- datasets:
3
- - jarvisx17/Medical_ASR_en
4
- language:
5
- - en
6
- metrics:
7
- - wer
8
- tags:
9
- - speech
10
- - ASR
11
- - Speech to text
12
- - Medical
13
- - Transcription
14
- widget:
15
- - src: https://cdn-media.huggingface.co/speech_samples/sample1.flac
16
- example_title: Librispeech sample 1
17
- - src: https://cdn-media.huggingface.co/speech_samples/sample2.flac
18
- example_title: Librispeech sample 2
19
- library_name: fairseq
20
- pipeline_tag: automatic-speech-recognition
21
- ---
22
-
23
- Python API:
24
-
25
- ```
26
- from transformers import Wav2Vec2Processor
27
- from transformers import Wav2Vec2ForCTC
28
-
29
- processor = Wav2Vec2Processor("jarvisx17/wave2vec-Medical-asr")
30
- model = Wav2Vec2ForCTC.from_pretrained("jarvisx17/wave2vec-Medical-asr")
31
- ```