pid
stringlengths
12
20
data_id
int32
3M
35.9M
10491033288855085861
27,359,486
14510618610706594411
25,905,947
14510618610706594411
25,882,680
14510618610706594411
19,625,899
14510618610706594411
19,172,679
14510618610706594411
19,172,635
14510618610706594411
19,171,274
14510618610706594411
19,170,881
14510618610706594411
19,170,825
13961409136964167589
15,077,566
13961409136964167589
11,977,788
13961409136964167589
11,697,256
2293977482985906474
15,745,446
2293977482985906474
11,224,763
2293977482985906474
8,336,460
167747874531758213
18,453,977
167747874531758213
12,423,758
167747874531758213
11,384,795
167747874531758213
10,577,088
167747874531758213
10,575,614
167747874531758213
10,408,768
12015597913146523683
23,021,191
12015597913146523683
22,415,659
12015597913146523683
12,685,460
12015597913146523683
12,567,077
12015597913146523683
12,245,765
12015597913146523683
11,958,779
12015597913146523683
11,781,539
12015597913146523683
11,781,346
12015597913146523683
11,374,094
12015597913146523683
10,972,644
12015597913146523683
10,827,933
12015597913146523683
10,634,687
12015597913146523683
10,328,472
12015597913146523683
9,544,284
12015597913146523683
8,588,663
12015597913146523683
7,927,802
12015597913146523683
7,548,374
12015597913146523683
7,145,858
12015597913146523683
6,978,671
12015597913146523683
6,965,912
12015597913146523683
6,965,877
12015597913146523683
6,964,079
12015597913146523683
6,792,786
12015597913146523683
6,427,210
12015597913146523683
6,412,265
12015597913146523683
5,067,806
12015597913146523683
5,066,200
12015597913146523683
4,246,369
12015597913146523683
4,127,382
12015597913146523683
4,067,103
12015597913146523683
3,994,403
1779763691699286988
34,464,427
1779763691699286988
32,913,272
1779763691699286988
32,910,043
1779763691699286988
32,893,891
1779763691699286988
32,881,138
1779763691699286988
32,606,713
1779763691699286988
32,532,483
1779763691699286988
31,999,272
1779763691699286988
31,819,062
1779763691699286988
31,761,622
1779763691699286988
31,760,658
1779763691699286988
31,654,492
8745810603689200367
12,101,284
8745810603689200367
10,434,684
8745810603689200367
9,827,475
8745810603689200367
9,451,010
8745810603689200367
9,450,840
8745810603689200367
9,063,745
8745810603689200367
9,063,317
8745810603689200367
9,009,128
8745810603689200367
9,008,358
8745810603689200367
8,604,132
8745810603689200367
8,604,077
8745810603689200367
8,603,387
8745810603689200367
8,603,262
8745810603689200367
8,601,655
11839609899711664535
8,832,153
5169742596769326260
12,399,780
5169742596769326260
11,927,246
5169742596769326260
11,910,314
5169742596769326260
11,613,961
5169742596769326260
11,578,126
5169742596769326260
11,572,055
5169742596769326260
11,404,184
5169742596769326260
11,351,147
5169742596769326260
11,151,389
5169742596769326260
10,895,849
5169742596769326260
10,691,461
5169742596769326260
10,342,840
5169742596769326260
10,229,694
5169742596769326260
10,197,072
5169742596769326260
10,166,130
5169742596769326260
10,068,438
5169742596769326260
9,860,951
5169742596769326260
9,724,666
5169742596769326260
9,504,635
5169742596769326260
9,372,290
5169742596769326260
9,290,155

Mario Maker 2 user uploaded

Part of the Mario Maker 2 Dataset Collection

Dataset Description

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 over the course of 1 month in February 2022.

How to use it

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:

from datasets import load_dataset

ds = load_dataset("TheGreatRambler/mm2_user_posted", streaming=True, split="train")
print(next(iter(ds)))

#OUTPUT:
{
 'pid': '10491033288855085861',
 'data_id': 27359486
}

Each row is a unique uploaded level denoted by the data_id uploaded by the player denoted by the pid.

You can also download the full dataset. Note that this will download ~215MB:

ds = load_dataset("TheGreatRambler/mm2_user_posted", split="train")

Data Structure

Data Instances

{
 'pid': '10491033288855085861',
 'data_id': 27359486
}

Data Fields

Field Type Description
pid string The player ID of this user, an unsigned 64 bit integer as a string
data_id int The data ID of the level this user uploaded

Data Splits

The dataset only contains a train split.

Dataset Creation

The dataset was created over a little more than a month in Febuary 2022 using the self hosted 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.

Considerations for Using the Data

The dataset contains no harmful language or depictions.

Downloads last month
0
Edit dataset card