irotem98 commited on
Commit
b9726cf
·
verified ·
1 Parent(s): 8840654

Add dataset card and sprite-sheet metadata

Browse files
Files changed (4) hide show
  1. README.md +32 -0
  2. dataset-index.json +0 -0
  3. dataset-info.json +21 -0
  4. row-animation-names.json +26 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Boogu Pets Sprite Sheets
3
+ tags:
4
+ - sprite-sheet
5
+ - sprite-animation
6
+ - pixel-art
7
+ - image-to-image
8
+ - rgba
9
+ ---
10
+
11
+ # Boogu Pets Sprite Sheets
12
+
13
+ Private dataset of 3,015 RGBA WebP sprite sheets used for the Boogu image-edit training experiments.
14
+
15
+ ## Contents
16
+
17
+ - images/: 3,015 source sprite sheets, each 576x624 pixels in RGBA format.
18
+ - dataset-index.json: source index with V1/V2 layouts and train/validation row examples. Its input_dir is normalized to images.
19
+ - row-animation-names.json: names for the animation rows.
20
+ - dataset-info.json: compact dataset statistics.
21
+
22
+ Each source sheet is divided into 192x208 sprite cells. The index describes the variable-length animation rows and the 3x3 packing used by the training pipeline. The dataset contains 28,231 indexed row examples: 27,691 train and 540 validation.
23
+
24
+ ## Row names
25
+
26
+ V1 has: idle, run right, run left, wave, jump, failed, waiting, running, review.
27
+
28
+ V2 contains those nine rows plus: look dirs 1-8 and look dirs 9-16.
29
+
30
+ ## License
31
+
32
+ No license is asserted here. The uploader is responsible for confirming that the source artwork may be redistributed and used under the intended terms.
dataset-index.json ADDED
The diff for this file is too large to render. See raw diff
 
dataset-info.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_count": 3015,
3
+ "format": "WebP",
4
+ "mode": "RGBA",
5
+ "image_size": [
6
+ 576,
7
+ 624
8
+ ],
9
+ "sprite_size": [
10
+ 192,
11
+ 208
12
+ ],
13
+ "sheet_versions": {
14
+ "v1": 9,
15
+ "v2": 11
16
+ },
17
+ "row_example_count": 28231,
18
+ "train_row_examples": 27691,
19
+ "validation_row_examples": 540,
20
+ "layout": "3x3 canvas packing used by the Boogu edit training pipeline"
21
+ }
row-animation-names.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "v1": {
3
+ "1": "idle",
4
+ "2": "run right",
5
+ "3": "run left",
6
+ "4": "wave",
7
+ "5": "jump",
8
+ "6": "failed",
9
+ "7": "waiting",
10
+ "8": "running",
11
+ "9": "review"
12
+ },
13
+ "v2": {
14
+ "1": "idle",
15
+ "2": "run right",
16
+ "3": "run left",
17
+ "4": "wave",
18
+ "5": "jump",
19
+ "6": "failed",
20
+ "7": "waiting",
21
+ "8": "running",
22
+ "9": "review",
23
+ "10": "look dirs 1-8",
24
+ "11": "look dirs 9-16"
25
+ }
26
+ }