Datasets:
Search is not available for this dataset
image
imagewidth (px) 500
500
| label
class label 3.12k
classes |
|---|---|
0absolving-flames-amb
|
|
1academy-attendant-alc
|
|
2academy-attendant-alcsd
|
|
3academy-guide-alc
|
|
4academy-guide-p24
|
|
5academy-guide-p24-cpr
|
|
6accepted-contract-doa-alter
|
|
7accepted-contract-doa1e
|
|
8accompanying-guard-alc-alter
|
|
9accursed-strength-mrc-alter
|
|
10acerbica-hvn
|
|
11acolyte-of-cultivation-amb
|
|
12acolyte-of-cultivation-p25
|
|
13acolyte-of-cultivation-p25-cpr
|
|
14acquiescing-rejection-p25
|
|
15acquiescing-rejection-rec-idy
|
|
16adept-swordmaster-amb
|
|
17adorned-stag-amb
|
|
18advent-of-the-shenju-p25
|
|
19advent-of-the-shenju-rec-hvf
|
|
20advent-of-the-stormcaller-doa-alter
|
|
21advent-of-the-stormcaller-doa1e
|
|
22aegis-of-dawn-mrc
|
|
23aesan-protector-doa-alter
|
|
24aesan-protector-doa1e
|
|
25aesan-protector-doap
|
|
26aesan-protector-sp2
|
|
27aethercloak-sentinel-dtr
|
|
28aetheric-calibration-dtrsd
|
|
29aetheric-calibration-p25
|
|
30aetheric-reforging-dtr
|
|
31aethers-embrace-dtr
|
|
32airship-cannoneer-alc
|
|
33airship-captain-mrc
|
|
34airship-cruiser-alc
|
|
35airship-engineer-alc
|
|
36airship-engineer-alcsd
|
|
37aithne-spirit-of-fire-p23-cpr
|
|
38alacritous-huntress-dtr
|
|
39alchemical-scripture-mrc
|
|
40alchemists-kit-alc
|
|
41alice-golden-queen-dtr
|
|
42alice-golden-queen-dtr1e-csr
|
|
43alice-golden-queen-dtr1e-cur
|
|
44alkahest-mrc
|
|
45allen-beast-beckoner-doa-alter
|
|
46allen-beast-beckoner-doa-alter-csr
|
|
47allen-beast-beckoner-doa1e
|
|
48alliance-gearshield-alc
|
|
49allied-warpriestess-alc
|
|
50allied-warpriestess-slc
|
|
51ameliorating-mantra-hvn
|
|
52amorphous-missile-ambdp
|
|
53amorphous-strike-alc
|
|
54anathemas-end-alc
|
|
55anathemas-end-alcsd
|
|
56andronika-eternal-herald-mrc
|
|
57andronika-eternal-herald-mrc-csr
|
|
58anger-the-skies-doa-alter
|
|
59anger-the-skies-doa1e
|
|
60anger-the-skies-doap
|
|
61anger-the-skies-doasd
|
|
62annihilation-hvn1e
|
|
63annul-spell-hvn
|
|
64annul-spell-p25
|
|
65anthem-of-vitality-ftc
|
|
66aphotic-ruin-hvn
|
|
67apotheosis-rite-p24-cpr
|
|
68apprentice-aeromancer-amb
|
|
69aqua-vitae-mrc
|
|
70aquamirage-whisper-dtrsd
|
|
71aquamirage-whisper-p25
|
|
72aqueous-armor-alc
|
|
73aqueous-enchanting-doa-alter
|
|
74aqueous-enchanting-doa1e
|
|
75aqueous-stallion-amb
|
|
76aquifer-seneschal-dtr
|
|
77arcane-blast-doa-alter
|
|
78arcane-blast-doa1e
|
|
79arcane-blast-doap
|
|
80arcane-blast-doasd
|
|
81arcane-blast-hvn
|
|
82arcane-blast-rec-hvf
|
|
83arcane-blast-rec-hvf-csr
|
|
84arcane-blast-sp1
|
|
85arcane-disposition-doa-alter
|
|
86arcane-disposition-doa1e
|
|
87arcane-disposition-doap
|
|
88arcane-disposition-doasd
|
|
89arcane-elemental-doa-alter
|
|
90arcane-elemental-doa1e
|
|
91arcane-sight-doa-alter
|
|
92arcane-sight-doa1e
|
|
93arcane-sight-doap
|
|
94arcane-sight-doasd
|
|
95arcanists-prism-doap
|
|
96arcanists-prism-doasd
|
|
97arcanists-prism-ksp
|
|
98archon-broadsword-alcsd
|
|
99archon-broadsword-p24
|
End of preview. Expand
in Data Studio
Grand Archive TCG Dataset
This dataset contains high-quality images of Grand Archive cards, processed and formatted for machine learning tasks. The images are standardized to 500x700 pixels in JPG format.
Each image is labeled with its unique slug, which can be used to fetch additional card information from the Grand Archive API.
Usage
You can load the dataset using the Hugging Face datasets library:
from datasets import load_dataset
dataset = load_dataset("acidtib/tcg-ga-cards")
Dataset Structure
Data Instances
A sample from the training set is provided below:
{
'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=500x700 at 0x7D8619332FC0>,
'labels': 0
}
Data Fields
The data instances have the following fields:
image: APIL.Image.Imageobject containing the image. Note that when accessing the image column:dataset[0]["image"]the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the"image"column, i.e.dataset[0]["image"]should always be preferred overdataset["image"][0].labels: anintclassification label.
Creation Tools
This dataset was created using:
- tcg-fetch - Simple program to fetch trading card images from various APIs.
- tcg-upload - A Python script for uploading multi-split image datasets to Hugging Face Hub.
Acknowledgments
- Card data and images provided by Grand Archive API
- Grand Archive is owned by Weebs of the Shore LLC
- Downloads last month
- 10