SushantGautam commited on
Commit
fc8b928
1 Parent(s): bc53380

Update soccer_net_echoes.py

Browse files
Files changed (1) hide show
  1. soccer_net_echoes.py +8 -8
soccer_net_echoes.py CHANGED
@@ -39,10 +39,10 @@ _LICENSE = "Apache License 2.0"
39
 
40
  _URLS = {
41
  "whisper_v1": "whisper_v1/",
42
- "whisper_v1_en": "wisper_v1_en/",
43
- "whisper_v2": "wisper_v2/",
44
- "whisper_v2_en": "wisper_v2_en/",
45
- "whisper_v3": "wisper_v3/",
46
  }
47
 
48
 
@@ -54,9 +54,9 @@ class FootballASRDataset(datasets.GeneratorBasedBuilder):
54
  BUILDER_CONFIGS = [
55
  datasets.BuilderConfig(name="whisper_v1", version=VERSION, description="Contains ASR from Whisper v1"),
56
  datasets.BuilderConfig(name="whisper_v1_en", version=VERSION, description="English-translated datasets from Whisper v1"),
57
- # datasets.BuilderConfig(name="whisper_v2", version=VERSION, description="Contains ASR from Whisper v2"),
58
- # datasets.BuilderConfig(name="whisper_v2_en", version=VERSION, description="English-translated datasets from Whisper v2"),
59
- # datasets.BuilderConfig(name="whisper_v3", version=VERSION, description="Contains ASR from Whisper v3"),
60
  ]
61
 
62
  DEFAULT_CONFIG_NAME = "whisper_v1"
@@ -64,7 +64,7 @@ class FootballASRDataset(datasets.GeneratorBasedBuilder):
64
  def _info(self):
65
  features = datasets.Features(
66
  {
67
- "segment_index": datasets.Value("int32"),
68
  "start_time": datasets.Value("float"),
69
  "end_time": datasets.Value("float"),
70
  "transcribed_text": datasets.Value("string"),
 
39
 
40
  _URLS = {
41
  "whisper_v1": "whisper_v1/",
42
+ "whisper_v1_en": "whisper_v1_en/",
43
+ "whisper_v2": "whisper_v2/",
44
+ "whisper_v2_en": "whisper_v2_en/",
45
+ "whisper_v3": "whisper_v3/",
46
  }
47
 
48
 
 
54
  BUILDER_CONFIGS = [
55
  datasets.BuilderConfig(name="whisper_v1", version=VERSION, description="Contains ASR from Whisper v1"),
56
  datasets.BuilderConfig(name="whisper_v1_en", version=VERSION, description="English-translated datasets from Whisper v1"),
57
+ datasets.BuilderConfig(name="whisper_v2", version=VERSION, description="Contains ASR from Whisper v2"),
58
+ datasets.BuilderConfig(name="whisper_v2_en", version=VERSION, description="English-translated datasets from Whisper v2"),
59
+ datasets.BuilderConfig(name="whisper_v3", version=VERSION, description="Contains ASR from Whisper v3"),
60
  ]
61
 
62
  DEFAULT_CONFIG_NAME = "whisper_v1"
 
64
  def _info(self):
65
  features = datasets.Features(
66
  {
67
+ "segment_index": datasets.Value("string"),
68
  "start_time": datasets.Value("float"),
69
  "end_time": datasets.Value("float"),
70
  "transcribed_text": datasets.Value("string"),