sushku commited on
Commit
33de10c
·
verified ·
1 Parent(s): 21ffb61

Add README for dataset card

Browse files
Files changed (1) hide show
  1. README.md +34 -3
README.md CHANGED
@@ -1,3 +1,34 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Cleaned GSG Dataset
3
+
4
+ This dataset contains processed audio segments and their transcripts.
5
+
6
+ ## Features
7
+
8
+ - `segment_uid`: Unique identifier per segment (string)
9
+ - `processed_time`: Timestamp of processing (int64)
10
+ - `audio`: Audio file(s) (Audio)
11
+ - `text`: Transcribed text (string)
12
+ - `start_time`: Start time of segment (string)
13
+ - `end_time`: End time of segment (string)
14
+
15
+ ## Example Row
16
+
17
+ ```json
18
+ {
19
+ "segment_uid": "GSG11241_eddfa15c-9d37-4ac4-81ff-b20e00fd58d3_0",
20
+ "processed_time": 1754916393,
21
+ "audio": [
22
+ {
23
+ "src": "https://huggingface.co/datasets/CentraLogic/cleaned_GSG_dataset/resolve/main/audio_bundle_1.zip/GSG11241_eddfa15c-9d37-4ac4-81ff-b20e00fd58d3_0.mp3",
24
+ "type": "audio/mpeg"
25
+ }
26
+ ],
27
+ "text": "Now dictating a follow-up note on Jeanette JENETTE Esposito ESPOSITO date is July 1st, 2025 Ms. Esposito comes to the office today with her companion, Faith. I had seen her almost three weeks ago on June 10, 2025. She had a recurrent dislocation of her right shoulder. I had done her rotator cuff repair years ago and she is feeling much better, though she does not have much pain. She does not have much pain. She is a little stiff. She has been wearing the sling. because we told her in her age group 72 years old, after one dislocation, likelihood of recurrent dislocation is small",
28
+ "correctedText": "",
29
+ "isCorrect": true,
30
+ "isUpdated": false,
31
+ "start_time": "00:00:00.000",
32
+ "end_time": "00:00:30.980"
33
+ }
34
+ ```