Datasets:
Update myspeechasr.py
Browse files- myspeechasr.py +2 -24
myspeechasr.py
CHANGED
|
@@ -1,32 +1,10 @@
|
|
| 1 |
-
# -*- coding: utf-8 -*-
|
| 2 |
-
"""MyspeechASR.ipynb
|
| 3 |
-
|
| 4 |
-
Automatically generated by Colaboratory.
|
| 5 |
-
|
| 6 |
-
Original file is located at
|
| 7 |
-
https://colab.research.google.com/drive/1FrAIWodQp3jV9v_u_NSYIfzB-q1LRTi8
|
| 8 |
-
"""
|
| 9 |
-
|
| 10 |
-
#!pip install datasets
|
| 11 |
-
|
| 12 |
-
#!pip install transformers
|
| 13 |
-
|
| 14 |
-
# imports
|
| 15 |
-
|
| 16 |
-
|
| 17 |
import datasets
|
| 18 |
from datasets.tasks import AutomaticSpeechRecognition
|
| 19 |
-
|
| 20 |
-
#from __future__ import absolute_import, division, print_function
|
| 21 |
-
|
| 22 |
-
import glob
|
| 23 |
import os
|
| 24 |
|
| 25 |
-
import datasets
|
| 26 |
-
|
| 27 |
_CITATION = """\
|
| 28 |
@inproceedings{panayotov2015librispeech,
|
| 29 |
-
title={
|
| 30 |
author={Panayotov, Vassil and Chen, Guoguo and Povey, Daniel and Khudanpur, Sanjeev},
|
| 31 |
booktitle={Acoustics, Speech and Signal Processing (ICASSP), 2015 IEEE International Conference on},
|
| 32 |
pages={5206--5210},
|
|
@@ -36,7 +14,7 @@ _CITATION = """\
|
|
| 36 |
"""
|
| 37 |
|
| 38 |
_DESCRIPTION = """\
|
| 39 |
-
|
| 40 |
prepared by Vassil Panayotov with the assistance of Daniel Povey. The data is derived from read
|
| 41 |
audiobooks from the LibriVox project, and has been carefully segmented and aligned.87
|
| 42 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import datasets
|
| 2 |
from datasets.tasks import AutomaticSpeechRecognition
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
import os
|
| 4 |
|
|
|
|
|
|
|
| 5 |
_CITATION = """\
|
| 6 |
@inproceedings{panayotov2015librispeech,
|
| 7 |
+
title={Myspeech: an ASR corpus based on public domain audio books},
|
| 8 |
author={Panayotov, Vassil and Chen, Guoguo and Povey, Daniel and Khudanpur, Sanjeev},
|
| 9 |
booktitle={Acoustics, Speech and Signal Processing (ICASSP), 2015 IEEE International Conference on},
|
| 10 |
pages={5206--5210},
|
|
|
|
| 14 |
"""
|
| 15 |
|
| 16 |
_DESCRIPTION = """\
|
| 17 |
+
MySpeech is a corpus of approximately 1000 hours of read English speech with sampling rate of 16 kHz,
|
| 18 |
prepared by Vassil Panayotov with the assistance of Daniel Povey. The data is derived from read
|
| 19 |
audiobooks from the LibriVox project, and has been carefully segmented and aligned.87
|
| 20 |
"""
|