File size: 1,281 Bytes
90eefdb 9d5e13a 90eefdb 6d122ab 90eefdb 6d122ab 90eefdb 4992e74 7ca6adc d41b02d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
---
dataset_info:
features:
- name: name
dtype: string
- name: firstPrinting
dtype: string
- name: manaCost
dtype: string
- name: convertedManaCost
dtype: float64
- name: type
dtype: string
- name: text
dtype: string
- name: power
dtype: string
- name: toughness
dtype: string
- name: loyalty
dtype: string
- name: layout
dtype: string
splits:
- name: train
num_bytes: 6999997
num_examples: 27703
- name: train_clean
num_bytes: 6813519.081146446
num_examples: 26965
download_size: 2539289
dataset_size: 13813516.081146445
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: train_clean
path: data/train_clean-*
---
# Dataset Card for "magic-the-gathering"
This is a HuggingFace adaptation of the [MTGJSON Atomic Card Database](https://mtgjson.com/data-models/card/card-atomic/) from the Taj-Mahal Data Science & Machine Learning Group.
## Usage
```
from datasets import load_dataset
dataset = load_dataset("MechaCroc/magic-the-gathering")
```
## Notes
- Power, Toughness, and Loyalty are strings because of the rare cases like [Tarmogoyf](https://gatherer.wizards.com/pages/Card/Details.aspx?multiverseid=136142) where the P/T is `* / 1+*`. |