mnazari commited on
Commit
bba3066
1 Parent(s): c5d7ad3
Files changed (3) hide show
  1. .gitignore +1 -3
  2. README.md +1 -2
  3. nena_speech_1_0_test.py +5 -5
.gitignore CHANGED
@@ -1,7 +1,5 @@
1
- # development
2
- _tests.ipynb
3
-
4
  # python
 
5
  venv
6
 
7
  # MacOS
 
 
 
 
1
  # python
2
+ _tests.ipynb
3
  venv
4
 
5
  # MacOS
README.md CHANGED
@@ -65,8 +65,7 @@ NENA Speech consists of multimodal examples of speech of the NENA dialects: audi
65
  ## Dataset Description
66
 
67
  - **Homepage**: https://crowdsource.nenadb.dev/
68
- - **Repository**: https://github.com/common-voice/common-voice
69
- - **Point of Contact**: Matthew Nazari
70
 
71
 
72
  ## Languages
 
65
  ## Dataset Description
66
 
67
  - **Homepage**: https://crowdsource.nenadb.dev/
68
+ - **Point of Contact:** [Matthew Nazari](mailto:matthewnazari@college.harvard.edu)
 
69
 
70
 
71
  ## Languages
nena_speech_1_0_test.py CHANGED
@@ -21,8 +21,8 @@ import os
21
  import datasets
22
  from tqdm import tqdm
23
 
24
- from .dialects import DIALECTS
25
- from .release_stats import STATS
26
 
27
  _HOMEPAGE = "https://nena.ames.cam.ac.uk/"
28
 
@@ -80,9 +80,9 @@ class NENASpeech(datasets.GeneratorBasedBuilder):
80
 
81
  def _info(self):
82
  total_dialects = len(STATS["dialects"])
83
- total_examples = len(STATS["totalExamples"])
84
- total_labeled = len(STATS["durationLabeled"]) / 60
85
- total_unlabeled = len(STATS["durationUnlabeled"]) / 60
86
  description = (
87
  "NENA Speech is a multimodal dataset to help teach machines how real people speak "
88
  "the Northeastern Neo-Aramaic dialects. The dataset currently consists of "
 
21
  import datasets
22
  from tqdm import tqdm
23
 
24
+ from dialects import DIALECTS
25
+ from release_stats import STATS
26
 
27
  _HOMEPAGE = "https://nena.ames.cam.ac.uk/"
28
 
 
80
 
81
  def _info(self):
82
  total_dialects = len(STATS["dialects"])
83
+ total_examples = STATS["totalExamples"]
84
+ total_labeled = STATS["durationLabeled"] / 60
85
+ total_unlabeled = STATS["durationUnlabeled"] / 60
86
  description = (
87
  "NENA Speech is a multimodal dataset to help teach machines how real people speak "
88
  "the Northeastern Neo-Aramaic dialects. The dataset currently consists of "