pid
stringlengths
16
20
type
int32
0
9
rank
int32
1
6
1779763691699286988
4
6
12261246700365149723
4
6
7845194844783256761
2
5
13056777567442168165
3
6
17277862020174739026
5
6
12848663821126400586
3
4
12848663821126400586
4
5
12848663821126400586
6
6
12848663821126400586
7
6
12848663821126400586
8
6
17968481153856673466
4
4
17968481153856673466
6
6
17968481153856673466
7
5
17968481153856673466
8
5
13998516037767419481
7
6
15788617548649364379
3
6
15788617548649364379
4
6
15788617548649364379
5
6
14885730732111459003
3
6
5894216448230881222
7
6
2172076186463207747
4
5
2172076186463207747
5
6
3524550213225219413
4
6
3524550213225219413
5
6
921621128464485517
0
6
921621128464485517
3
6
921621128464485517
4
6
921621128464485517
7
6
921621128464485517
8
6
5161063262012651045
4
6
5161063262012651045
5
6
5161063262012651045
6
6
5161063262012651045
7
6
5161063262012651045
8
6
8570632731564358651
4
6
13896812960072892817
3
6
13896812960072892817
4
5
13896812960072892817
7
6
2165075730992079779
0
6
12977262614912162962
4
6
12977262614912162962
7
6
12977262614912162962
8
6
603786003750966129
0
6
11449704597015585350
3
6
11449704597015585350
4
6
16059234495547293074
4
5
2214667970897081452
0
6
2214667970897081452
1
4
2214667970897081452
6
4
2214667970897081452
7
6
2214667970897081452
8
5
10897474440273866635
3
6
10897474440273866635
6
6
10897474440273866635
8
6
5019625330980534843
1
4
5019625330980534843
6
4
10522970131008054846
7
6
10522970131008054846
8
5
13442516939083381365
1
6
12373312552315344920
1
5
12373312552315344920
6
6
11753600198609299340
1
6
11753600198609299340
6
6
5088708013860987434
1
6
5088708013860987434
6
6
5088708013860987434
7
6
5088708013860987434
8
5
8620422134616230760
1
4
8620422134616230760
6
4
8620422134616230760
8
6
15428782352503384586
1
5
15428782352503384586
2
4
15428782352503384586
3
4
15428782352503384586
6
4
15428782352503384586
7
6
15428782352503384586
8
5
6873029599072971592
2
6
6873029599072971592
3
6
6873029599072971592
6
6
6873029599072971592
8
6
15561953802815811448
1
6
10154752099397375753
0
6
1400341008427338327
0
6
1400341008427338327
2
4
1400341008427338327
3
6
1400341008427338327
6
5
1400341008427338327
8
6
13548942238121367657
2
6
10457407577321660459
2
5
15729492159109455054
0
4
15729492159109455054
1
6
15729492159109455054
2
6
15729492159109455054
3
5
15729492159109455054
4
4
15729492159109455054
6
5
15729492159109455054
7
5
15729492159109455054
8
4
15312655555329787809
3
6
15312655555329787809
4
6
15312655555329787809
5
6

Mario Maker 2 user badges

Part of the Mario Maker 2 Dataset Collection

Dataset Description

The Mario Maker 2 user badges dataset consists of 9328 user badges (they are capped to 10k globally) from Nintendo's online service and adds onto TheGreatRambler/mm2_user. 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

You can load and iterate through the dataset with the following code:

from datasets import load_dataset

ds = load_dataset("TheGreatRambler/mm2_user_badges", split="train")
print(next(iter(ds)))

#OUTPUT:
{
 'pid': '1779763691699286988',
 'type': 4,
 'rank': 6
}

Each row is a badge awarded to the player denoted by pid. TheGreatRambler/mm2_user contains these players.

Data Structure

Data Instances

{
 'pid': '1779763691699286988',
 'type': 4,
 'rank': 6
}

Data Fields

Field Type Description
pid string Player ID
type int The kind of badge, enum below
rank int The rank of badge, enum below

Data Splits

The dataset only contains a train split.

Enums

The dataset contains some enum integer fields. This can be used to convert back to their string equivalents:

BadgeTypes = {
    0: "Maker Points (All-Time)",
    1: "Endless Challenge (Easy)",
    2: "Endless Challenge (Normal)",
    3: "Endless Challenge (Expert)",
    4: "Endless Challenge (Super Expert)",
    5: "Multiplayer Versus",
    6: "Number of Clears",
    7: "Number of First Clears",
    8: "Number of World Records",
    9: "Maker Points (Weekly)"
}

BadgeRanks = {
    6: "Bronze",
    5: "Silver",
    4: "Gold",
    3: "Bronze Ribbon",
    2: "Silver Ribbon",
    1: "Gold Ribbon"
}

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
2
Edit dataset card