CoolFace
Datasetpublic

ChicoPanama/pokedao-mew1a-training-data-layered

PokeDAO Mew-1A Training Dataset (Layered Architecture) ๐Ÿงฌ Project Mew-1A: The world's first AI training dataset specifically for Pokemon TCG pricing analysis, extracted from a production-ready layered database architecture. Dataset Description This dataset contains 10,000 high-quality training examples extracted from PokeDAO's layered database containing 116,744 market listings across multiple marketplaces. Layered Architecture The data is sourcedโ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/ChicoPanama/pokedao-mew1a-training-data-layered.

sourceHugging Faceotherupdated 1y agoView on Hugging Face
0likes27downloads
Dataset Card

PokeDAO Mew-1A Training Dataset (Layered Architecture)

๐Ÿงฌ Project Mew-1A: The world's first AI training dataset specifically for Pokemon TCG pricing analysis, extracted from a production-ready layered database architecture.

Dataset Description

This dataset contains 10,000 high-quality training examples extracted from PokeDAO's layered database containing 116,744 market listings across multiple marketplaces.

Layered Architecture

The data is sourced from a 6-layer database architecture:

  • โ€”Layer 0: Official Pokemon TCG metadata (21,626 cards from TCGdex)
  • โ€”Layer 1: Canonical card registry (35,421 unique card variants)
  • โ€”Layer 2: Market listings (116,744 listings - SOURCE OF THIS DATASET)
  • โ€”Layer 3: Sale records (pending)
  • โ€”Layer 4: Consensus pricing (pending)
  • โ€”Layer 5: Signals & alerts (pending)

Price Tier Classification

Each card is classified into TCG Rarity-Based Price Tiers:

TierCountPercentage
๐ŸŒŸ SECRET RARE130.1%
๐Ÿ’ซ ULTRA RARE2032.0%
โœจ FULL ART1,15611.6%
โšก HOLO RARE6,93069.3%
๐Ÿ“ฆ UNCOMMON1,69817.0%
๐Ÿ“„ COMMON00.0%

Tier Definitions

  • โ€”๐ŸŒŸ SECRET RARE: $100,000+ (Ultra-premium grails)
  • โ€”๐Ÿ’ซ ULTRA RARE: $10,000-100k (High-value collectibles)
  • โ€”โœจ FULL ART: $1,000-10k (Premium cards)
  • โ€”โšก HOLO RARE: $100-1k (Standard collectibles)
  • โ€”๐Ÿ“ฆ UNCOMMON: $10-100 (Common playables)
  • โ€”๐Ÿ“„ COMMON: $1-10 (Bulk cards)

Dataset Structure

Features

  • โ€”id: Unique example identifier
  • โ€”card_name: Canonical card name
  • โ€”card_set: TCG set name
  • โ€”card_number: Card number in set
  • โ€”variant: Card variant (holo, reverse holo, etc.)
  • โ€”rarity: Official TCG rarity
  • โ€”is_first_edition: First edition flag
  • โ€”is_holo: Holographic flag
  • โ€”is_reverse_holo: Reverse holo flag
  • โ€”is_shadowless: Shadowless variant flag
  • โ€”avg_price_cents: Average price in cents
  • โ€”avg_price_formatted: Human-readable price
  • โ€”total_listings: Number of market listings
  • โ€”price_tier: TCG-based price tier
  • โ€”price_tier_emoji: Tier emoji indicator
  • โ€”sample_listings: JSON array of sample listings
  • โ€”data_quality: Data quality score (0-1)

Example Row

python
{
  'id': 'mew1a-1',
  'card_name': 'Charizard',
  'card_set': 'Base Set',
  'card_number': '4/102',
  'variant': 'Holo',
  'rarity': 'Rare Holo',
  'avg_price_cents': 50000,
  'avg_price_formatted': '$500.00',
  'total_listings': 42,
  'price_tier': 'HOLO RARE',
  'price_tier_emoji': 'โšก',
  ...
}

Use Cases

  1. 1.Price Prediction Models: Train models to predict card prices based on attributes
  2. 2.Market Analysis: Analyze pricing trends across tiers and sets
  3. 3.Investment Recommendations: Build systems to identify undervalued cards
  4. 4.Price Tier Classification: Classify cards into value tiers
  5. 5.Anomaly Detection: Identify mispriced listings

Recommended Models

  • โ€”Base Model: meta-llama/Llama-3.2-3B-Instruct
  • โ€”Task: Text generation / Classification
  • โ€”Fine-tuning: LoRA (rank 8, alpha 16)

Training Configuration

yaml
model: meta-llama/Llama-3.2-3B-Instruct
task: text-generation
method: LoRA
parameters:
  lora_rank: 8
  lora_alpha: 16
  learning_rate: 2e-4
  epochs: 3
  batch_size: 4
  gradient_accumulation_steps: 4

Metadata

  • โ€”Version: v1
  • โ€”Created: 2025-10-05
  • โ€”Source: Layered Database (canonicalcards + marketlistings)
  • โ€”Tier System: TCG Rarity-Based (Option B)
  • โ€”Total Examples: 10,000
  • โ€”File Size: ~5MB

Data Sources

  • โ€”eBay Browse API
  • โ€”Courtyard (Ethereum + Polygon tokenized cards)
  • โ€”Collector Crypt (Helius/Solana NFTs)
  • โ€”Phygitals (Solana NFT marketplace)
  • โ€”TCG Player API

License

Proprietary - PokeDAO 2025

For commercial use, please contact: [PokeDAO Team]

Citation

bibtex
@dataset{pokedao_mew1a_2025,
  title={PokeDAO Mew-1A Training Dataset},
  author={PokeDAO},
  year={2025},
  publisher={HuggingFace},
  url={https://huggingface.co/datasets/ChicoPanama/pokedao-mew1a-training-data-layered}
}

Links

  • โ€”PokeDAO: GitHub
  • โ€”Project Mew-1A: Fine-tuned Llama-3.2-3B for TCG pricing
  • โ€”Database Architecture: 6-layer canonical system

Generated with Project Mew-1A | 2025-10-05