juliehunter
commited on
Commit
•
88aaa9b
1
Parent(s):
4044a09
Update README.md
Browse files
README.md
CHANGED
@@ -120,33 +120,32 @@ The corpus contains the following information for each .wav file:
|
|
120 |
- **speaker_id**
|
121 |
- **audio_id**: meeting_id + speaker_id
|
122 |
- **audio**: the .wav file for an individual speaker
|
123 |
-
- **
|
124 |
|
125 |
```python
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
]
|
148 |
-
}
|
149 |
```
|
|
|
150 |
|
151 |
## Example Use
|
152 |
|
|
|
120 |
- **speaker_id**
|
121 |
- **audio_id**: meeting_id + speaker_id
|
122 |
- **audio**: the .wav file for an individual speaker
|
123 |
+
- **segments**: a list of dictionaries where each entry provides the transcription of a segment with timestamps for the segment and each word that it contains:
|
124 |
|
125 |
```python
|
126 |
+
|
127 |
+
[
|
128 |
+
{
|
129 |
+
"start": 0.5,
|
130 |
+
"end": 1.2,
|
131 |
+
"transcript": "bonjour toi",
|
132 |
+
"words": [
|
133 |
+
{
|
134 |
+
"word": "bonjour",
|
135 |
+
"start": 0.5,
|
136 |
+
"end": 0.9
|
137 |
+
}
|
138 |
+
{
|
139 |
+
"word": "toi",
|
140 |
+
"start": 0.9,
|
141 |
+
"end": 1.2
|
142 |
+
}
|
143 |
+
]
|
144 |
+
},
|
145 |
+
...
|
146 |
+
]
|
|
|
|
|
147 |
```
|
148 |
+
- **transcript**: a string formed by concatenating the text from all of the segments
|
149 |
|
150 |
## Example Use
|
151 |
|