nakkhatra commited on
Commit
ee8682b
1 Parent(s): 4e3d9ff

Reverted back to the original

Browse files
Files changed (1) hide show
  1. common_voice_bn.py +5 -3
common_voice_bn.py CHANGED
@@ -20,7 +20,7 @@ from .release_stats import STATS
20
 
21
  #Hard Links
22
 
23
- _HOMEPAGE = "https://commonvoice.mozilla.org/bn/datasets"
24
 
25
  _LICENSE = "https://creativecommons.org/publicdomain/zero/1.0/"
26
 
@@ -105,11 +105,13 @@ class CommonVoice(datasets.GeneratorBasedBuilder):
105
  description=description,
106
  features=features,
107
  supervised_keys=None,
108
- homepage=_HOMEPAGE,
109
  license=_LICENSE,
110
  # citation=_CITATION,
111
  version=self.config.version,
112
- task_templates=[AutomaticSpeechRecognition(audio_column="audio", transcription_column="sentence")],
 
 
113
  )
114
 
115
 
 
20
 
21
  #Hard Links
22
 
23
+ _HOMEPAGE = "https://commonvoice.mozilla.org/en/datasets"
24
 
25
  _LICENSE = "https://creativecommons.org/publicdomain/zero/1.0/"
26
 
 
105
  description=description,
106
  features=features,
107
  supervised_keys=None,
108
+ # homepage=_HOMEPAGE,
109
  license=_LICENSE,
110
  # citation=_CITATION,
111
  version=self.config.version,
112
+ #task_templates=[
113
+ # AutomaticSpeechRecognition(audio_file_path_column="path", transcription_column="sentence")
114
+ #],
115
  )
116
 
117