--- language: - en tags: - wow - auction-house - time-series license: mit --- # WoW Auction House Dataset Historical World of Warcraft auction house listings with item metadata, pricing, and sale outcome labels. ## Contents | Path | Description | |------|-------------| | `memmap/` | Memory-mapped numpy arrays — main training data | | `cache/` | Precomputed sequence cache | | `indices.parquet` | Maps (item_index, record) → memmap position | | `feature_stats.pt` | Per-feature means and stds for normalization | | `mappings/` | Vocabulary JSONs (items, contexts, bonuses, modifier types) | ## Usage ```python from huggingface_hub import snapshot_download snapshot_download( repo_id="AngelZeur/auction-data", repo_type="dataset", local_dir="generated/", ) ```