TheGreatRambler commited on
Commit
c847b14
1 Parent(s): cda85af

Update size

Browse files
Files changed (1) hide show
  1. README.md +3 -43
README.md CHANGED
@@ -6,7 +6,7 @@ license:
6
  multilinguality:
7
  - multilingual
8
  size_categories:
9
- - 10M<n<100M
10
  source_datasets:
11
  - original
12
  task_categories:
@@ -25,7 +25,7 @@ pretty_name: Mario Maker 2 level deaths
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 level deaths dataset consists of 564 million level deaths from Nintendo's online service totaling around 9.5GB 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 level deaths 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:
@@ -46,7 +46,7 @@ print(next(iter(ds)))
46
  ```
47
  Each row is a unique death in the level denoted by the `data_id` that occurs at the provided coordinates. `is_subworld` denotes whether the death happened in the main world or the subworld.
48
 
49
- You can also download the full dataset. Note that this will download ~9.5GB:
50
  ```python
51
  ds = load_dataset("TheGreatRambler/mm2_level_deaths", split="train")
52
  ```
@@ -78,46 +78,6 @@ ds = load_dataset("TheGreatRambler/mm2_level_deaths", split="train")
78
  The dataset only contains a train split.
79
 
80
  <!-- TODO create detailed statistics -->
81
- <!--
82
- ## Dataset Statistics
83
-
84
- The dataset contains 115M files and the sum of all the source code file sizes is 873 GB (note that the size of the dataset is larger due to the extra fields). A breakdown per language is given in the plot and table below:
85
-
86
- ![dataset-statistics](https://huggingface.co/datasets/codeparrot/github-code/resolve/main/github-code-stats-alpha.png)
87
-
88
- | | Language |File Count| Size (GB)|
89
- |---:|:-------------|---------:|-------:|
90
- | 0 | Java | 19548190 | 107.70 |
91
- | 1 | C | 14143113 | 183.83 |
92
- | 2 | JavaScript | 11839883 | 87.82 |
93
- | 3 | HTML | 11178557 | 118.12 |
94
- | 4 | PHP | 11177610 | 61.41 |
95
- | 5 | Markdown | 8464626 | 23.09 |
96
- | 6 | C++ | 7380520 | 87.73 |
97
- | 7 | Python | 7226626 | 52.03 |
98
- | 8 | C# | 6811652 | 36.83 |
99
- | 9 | Ruby | 4473331 | 10.95 |
100
- | 10 | GO | 2265436 | 19.28 |
101
- | 11 | TypeScript | 1940406 | 24.59 |
102
- | 12 | CSS | 1734406 | 22.67 |
103
- | 13 | Shell | 1385648 | 3.01 |
104
- | 14 | Scala | 835755 | 3.87 |
105
- | 15 | Makefile | 679430 | 2.92 |
106
- | 16 | SQL | 656671 | 5.67 |
107
- | 17 | Lua | 578554 | 2.81 |
108
- | 18 | Perl | 497949 | 4.70 |
109
- | 19 | Dockerfile | 366505 | 0.71 |
110
- | 20 | Haskell | 340623 | 1.85 |
111
- | 21 | Rust | 322431 | 2.68 |
112
- | 22 | TeX | 251015 | 2.15 |
113
- | 23 | Batchfile | 236945 | 0.70 |
114
- | 24 | CMake | 175282 | 0.54 |
115
- | 25 | Visual Basic | 155652 | 1.91 |
116
- | 26 | FORTRAN | 142038 | 1.62 |
117
- | 27 | PowerShell | 136846 | 0.69 |
118
- | 28 | Assembly | 82905 | 0.78 |
119
- | 29 | Julia | 58317 | 0.29 |
120
- -->
121
 
122
  ## Dataset Creation
123
 
 
6
  multilinguality:
7
  - multilingual
8
  size_categories:
9
+ - 100M<n<1B
10
  source_datasets:
11
  - original
12
  task_categories:
 
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 level deaths dataset consists of 564 million level deaths from Nintendo's online service totaling around 2.5GB 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 level deaths 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:
 
46
  ```
47
  Each row is a unique death in the level denoted by the `data_id` that occurs at the provided coordinates. `is_subworld` denotes whether the death happened in the main world or the subworld.
48
 
49
+ You can also download the full dataset. Note that this will download ~2.5GB:
50
  ```python
51
  ds = load_dataset("TheGreatRambler/mm2_level_deaths", split="train")
52
  ```
 
78
  The dataset only contains a train split.
79
 
80
  <!-- TODO create detailed statistics -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
  ## Dataset Creation
83