khalidalt commited on
Commit
0991cab
·
1 Parent(s): e65f2ca

update README

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md CHANGED
@@ -89,6 +89,22 @@ Subscene is a collection of multilingual subtitles, encompassing 66 different La
89
 
90
  ## Dataset Structure
91
 
 
92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
 
94
  ## Acknowledgements
 
89
 
90
  ## Dataset Structure
91
 
92
+ ### Data Instances
93
 
94
+ ```
95
+ {
96
+
97
+ }
98
+ ```
99
+
100
+ ### Data Fields
101
+
102
+ - `subtitle_name` (`str`): The name of the folder containing the subtitle file. This likely corresponds to the movie, series, or anime title.
103
+ - `file_name` (`str`): The specific filename of the subtitle file itself.
104
+ - `transcript` (`dict`): This dictionary holds the complete transcript information for the subtitle file. It contains nested structures to represent individual subtitle segments.
105
+ - `id` (`int`): (Within `transcript` dictionary) A unique identifier for a specific subtitle segment within the file.
106
+ - `start_time` (`str`): (Within `transcript` dictionary) The starting time of the subtitle segment, likely formatted according to a specific timecode standard.
107
+ - `end_time` (`str`): (Within `transcript` dictionary) The ending time of the subtitle segment, following the same timecode format as `start_time`.
108
+ - `text` (`str`): (Within `transcript` dictionary) The actual text content displayed for that specific subtitle segment.
109
 
110
  ## Acknowledgements