juliehunter commited on
Commit
88aaa9b
1 Parent(s): 4044a09

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -24
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
- - **transcript**: a dictionary with the following format:
124
 
125
  ```python
126
- {
127
- "transcript": "bonjour toi ça va",
128
- "segments": [
129
- {
130
- "start": 0.5,
131
- "end": 1.2,
132
- "transcript": "bonjour toi",
133
- "words": [
134
- {
135
- "word": "bonjour",
136
- "start": 0.5,
137
- "end": 0.9
138
- }
139
- {
140
- "word": "toi",
141
- "start": 0.9,
142
- "end": 1.2
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