chrisrca commited on
Commit
799fa57
·
verified ·
1 Parent(s): 69bae2c

Update dataset_info.json

Browse files
Files changed (1) hide show
  1. dataset_info.json +14 -13
dataset_info.json CHANGED
@@ -1,41 +1,42 @@
1
  {
2
- "description": "Clash Royale TV Royale Replays - Frame-by-frame PNGs in Parquet + preview thumbnails.",
3
  "license": "MIT",
4
  "features": {
5
  "frame_id": {
6
  "dtype": "int64",
7
- "description": "Sequential frame number"
8
  },
9
  "image": {
10
  "_type": "Image",
11
  "dtype": null,
12
- "description": "PNG image with bytes and path"
13
  },
14
  "hash": {
15
  "dtype": "string",
16
- "description": "MD5 hash for deduplication"
17
- },
18
- "preview": {
19
- "_type": "Image",
20
- "description": "Thumbnail of first frame (JPG)"
21
  }
22
  },
 
 
 
 
 
23
  "splits": {
24
  "train": {
25
  "name": "train",
26
  "num_bytes": 0,
27
- "num_examples": 0
 
28
  }
29
  },
30
- "subset_names": [
31
- "train"
32
- ],
33
  "tags": [
34
  "clash-royale",
35
  "replays",
36
  "gaming",
37
  "computer-vision",
38
  "parquet",
39
- "image-dataset"
 
 
40
  ]
41
  }
 
1
  {
2
+ "description": "Clash Royale TV Royale Replays - Frame-by-frame gameplay recordings stored as Parquet files with PNG frames, organized by arena and replay ID.",
3
  "license": "MIT",
4
  "features": {
5
  "frame_id": {
6
  "dtype": "int64",
7
+ "description": "Sequential frame number (duplicate frames removed)"
8
  },
9
  "image": {
10
  "_type": "Image",
11
  "dtype": null,
12
+ "description": "PNG-encoded game frame stored as bytes"
13
  },
14
  "hash": {
15
  "dtype": "string",
16
+ "description": "MD5 hash of frame for deduplication tracking"
 
 
 
 
17
  }
18
  },
19
+ "structure": {
20
+ "format": "Parquet files organized by arena and replay",
21
+ "path_pattern": "arena_{arena_number}/{replay_uuid}/frames.parquet",
22
+ "preview_images": "arena_{arena_number}/{replay_uuid}/preview.jpg (JPEG thumbnail of first frame)"
23
+ },
24
  "splits": {
25
  "train": {
26
  "name": "train",
27
  "num_bytes": 0,
28
+ "num_examples": 0,
29
+ "description": "All replays organized by arena (1-31)"
30
  }
31
  },
 
 
 
32
  "tags": [
33
  "clash-royale",
34
  "replays",
35
  "gaming",
36
  "computer-vision",
37
  "parquet",
38
+ "image-dataset",
39
+ "video-frames",
40
+ "mobile-gaming"
41
  ]
42
  }