parquet-converter commited on
Commit
dd508f4
1 Parent(s): 35e87e1

Update parquet files

Browse files
README.md DELETED
@@ -1,82 +0,0 @@
1
- ---
2
- language:
3
- - multilingual
4
- license:
5
- - cc-by-nc-sa-4.0
6
- multilinguality:
7
- - multilingual
8
- size_categories:
9
- - 10M<n<100M
10
- source_datasets:
11
- - original
12
- task_categories:
13
- - other
14
- - object-detection
15
- - text-retrieval
16
- - token-classification
17
- - text-generation
18
- task_ids: []
19
- pretty_name: Mario Maker 2 user uploaded
20
- tags:
21
- - text-mining
22
- ---
23
-
24
- # Mario Maker 2 user uploaded
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 user uploaded dataset consists of 26.5 million uploaded user levels from Nintendo's online service totaling around 215MB of data. 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
- The Mario Maker 2 user uploaded dataset is a very large dataset so for most use cases it is recommended to make use of the streaming API of `datasets`. 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_user_posted", streaming=True, split="train")
37
- print(next(iter(ds)))
38
-
39
- #OUTPUT:
40
- {
41
- 'pid': '10491033288855085861',
42
- 'data_id': 27359486
43
- }
44
- ```
45
- Each row is a unique uploaded level denoted by the `data_id` uploaded by the player denoted by the `pid`.
46
-
47
- You can also download the full dataset. Note that this will download ~215MB:
48
- ```python
49
- ds = load_dataset("TheGreatRambler/mm2_user_posted", split="train")
50
- ```
51
-
52
- ## Data Structure
53
-
54
- ### Data Instances
55
-
56
- ```python
57
- {
58
- 'pid': '10491033288855085861',
59
- 'data_id': 27359486
60
- }
61
- ```
62
-
63
- ### Data Fields
64
-
65
- |Field|Type|Description|
66
- |---|---|---|
67
- |pid|string|The player ID of this user, an unsigned 64 bit integer as a string|
68
- |data_id|int|The data ID of the level this user uploaded|
69
-
70
- ### Data Splits
71
-
72
- The dataset only contains a train split.
73
-
74
- <!-- TODO create detailed statistics -->
75
-
76
- ## Dataset Creation
77
-
78
- 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.
79
-
80
- ## Considerations for Using the Data
81
-
82
- The dataset contains no harmful language or depictions.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/train-00000-of-00002-23e8a70a68689fcb.parquet → TheGreatRambler--mm2_user_posted/parquet-train-00000-of-00002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cc5a8436a9ff78569f0b0234eec9808742388243447e0efb47eb48f43381661c
3
- size 101636853
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d856464c4d0d8ce6d17bd06783182198c61bd8d45886fbd8ee733caac7e3401e
3
+ size 142339173
data/train-00001-of-00002-b41b9e39b1f67fc8.parquet → TheGreatRambler--mm2_user_posted/parquet-train-00001-of-00002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:953d7f3cff1e50e4b5db1f7201d5acef44f3ffe81998a496325197972ccb6e83
3
- size 113226592
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:699d196e31a00ba9f61c39443072a2a1ce32a0460ba0997193c1d9744cc08811
3
+ size 74900257
dataset_infos.json DELETED
@@ -1,43 +0,0 @@
1
- {"TheGreatRambler--mm2_user_posted": {
2
- "description": "",
3
- "citation": "",
4
- "homepage": "",
5
- "license": "",
6
- "features": {
7
- "pid": {
8
- "dtype": "string",
9
- "id": null,
10
- "_type": "Value"
11
- },
12
- "data_id": {
13
- "dtype": "int32",
14
- "id": null,
15
- "_type": "Value"
16
- }
17
- },
18
- "post_processed": null,
19
- "supervised_keys": null,
20
- "task_templates": null,
21
- "builder_name": "parquet",
22
- "config_name": "default",
23
- "version": {
24
- "version_str": "0.0.0",
25
- "description": null,
26
- "major": 0,
27
- "minor": 0,
28
- "patch": 0
29
- },
30
- "splits": {
31
- "train": {
32
- "name": "train",
33
- "num_bytes": 727880813,
34
- "num_examples": 26567271,
35
- "dataset_name": "mm2_user_posted"
36
- }
37
- },
38
- "download_checksums": null,
39
- "download_size": 214863445,
40
- "post_processing_size": null,
41
- "dataset_size": 727880813,
42
- "size_in_bytes": 942744258
43
- }}