auction-data / README.md
AngelZeur's picture
Upload README.md with huggingface_hub
da7b47c verified
|
Raw
History Blame Contribute Delete
784 Bytes
---
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/",
)
```