tanthinhdt commited on
Commit
673319a
·
1 Parent(s): 0844368

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -6
README.md CHANGED
@@ -18,12 +18,23 @@ language:
18
  Each sample will have a structure as follows:
19
  ```
20
  {
21
- "id": <id-of-sample>,
22
- "type" <rgb-or-keypoints-data>,
23
- "view": <frontal-or-side-view>,
24
- "text": <translation-of-sample-in-spoken-language>,
25
- "video": <video-in-bytes>,
26
- "gloss": <gloss-of-sample>,
 
 
 
 
 
 
 
 
 
 
 
27
  }
28
  ```
29
 
 
18
  Each sample will have a structure as follows:
19
  ```
20
  {
21
+ 'name': Value(dtype='string', id=None),
22
+ 'video': Value(dtype='large_binary', id=None),
23
+ 'start': Value(dtype='int8', id=None),
24
+ 'end': Value(dtype='int8', id=None),
25
+ 'speaker': Value(dtype='string', id=None),
26
+ 'orth': Value(dtype='string', id=None),
27
+ 'translation': Value(dtype='string', id=None)
28
+ }
29
+
30
+ {
31
+ 'name': '06October_2012_Saturday_tagesschau-8730',
32
+ 'video': <video-bytes>,
33
+ 'start': -1,
34
+ 'end': -1,
35
+ 'speaker': 'Signer08',
36
+ 'orth': 'MORGEN DEUTSCH LAND IX TIEF KOMMEN KUEHL KOMMEN',
37
+ 'translation': 'ein tiefausläufer bringt morgen vor allem dem süden deutschlands noch regen',
38
  }
39
  ```
40