TheGreatRambler commited on
Commit
b5c1519
1 Parent(s): eaabe60

Create README

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - multilingual
4
+ license:
5
+ - cc-by-nc-sa-4.0
6
+ multilinguality:
7
+ - multilingual
8
+ size_categories:
9
+ - 1M<n<10M
10
+ source_datasets:
11
+ - original
12
+ task_categories:
13
+ - text-generation
14
+ - structure-prediction
15
+ - object-detection
16
+ - text-mining
17
+ - information-retrieval
18
+ - other
19
+ task_ids:
20
+ - other
21
+ pretty_name: Mario Maker 2 super world levels
22
+ ---
23
+
24
+ # Mario Maker 2 super world levels
25
+ Part of the [Mario Maker 2 Dataset Collection](https://tgrcode.com/posts/mario_maker_2_datasets)
26
+
27
+ ## Dataset Description
28
+ The Mario Maker 2 super world levels dataset consists of 3.3 million super world levels from Nintendo's online service and adds onto `TheGreatRambler/mm2_world`. The dataset was created using the self-hosted [Mario Maker 2 api](https://tgrcode.com/posts/mario_maker_2_api) over the course of 1 month in February 2022.
29
+
30
+ ### How to use it
31
+ You can load and iterate through the dataset with the following code:
32
+
33
+ ```python
34
+ from datasets import load_dataset
35
+
36
+ ds = load_dataset("TheGreatRambler/mm2_world_levels", split="train")
37
+ print(next(iter(ds)))
38
+
39
+ #OUTPUT:
40
+ {
41
+ 'pid': '14510618610706594411',
42
+ 'data_id': 19170881,
43
+ 'ninjis': 23
44
+ }
45
+ ```
46
+ Each row is a level within a super world owned by player `pid` that is denoted by `data_id`. Each level contains some number of ninjis `ninjis`, a rough metric for their popularity.
47
+
48
+ ## Data Structure
49
+
50
+ ### Data Instances
51
+
52
+ ```python
53
+ {
54
+ 'pid': '14510618610706594411',
55
+ 'data_id': 19170881,
56
+ 'ninjis': 23
57
+ }
58
+ ```
59
+
60
+ ### Data Fields
61
+
62
+ |Field|Type|Description|
63
+ |---|---|---|
64
+ |pid|string|The player ID of the user who created the super world with this level|
65
+ |data_id|int|The data ID of the level|
66
+ |ninjis|int|Number of ninjis shown on this level|
67
+
68
+ ### Data Splits
69
+
70
+ The dataset only contains a train split.
71
+
72
+ <!-- TODO create detailed statistics -->
73
+
74
+ ## Dataset Creation
75
+
76
+ The dataset was created over a little more than a month in Febuary 2022 using the self hosted [Mario Maker 2 api](https://tgrcode.com/posts/mario_maker_2_api). As requests made to Nintendo's servers require authentication the process had to be done with upmost care and limiting download speed as to not overload the API and risk a ban. There are no intentions to create an updated release of this dataset.
77
+
78
+ ## Considerations for Using the Data
79
+
80
+ The dataset contains no harmful language or depictions.