--- license: mit tags: - game-theory - deprecated - business-strategy language: - en pretty_name: "[DEPRECATED] Game Theory Business Strategy" --- # ⚠️ DEPRECATED — Game Theory Business Strategy > **This dataset has been superseded by [GameTheory-Formulator](https://huggingface.co/datasets/Alogotron/GameTheory-Formulator)**, which contains **1,215 real-world scenarios across 6 domains** (including 220 business scenarios) with full formulation steps, solutions, and interpretations. ## Migration Please use the newer, more comprehensive dataset: ```python from datasets import load_dataset # New dataset (recommended) ds = load_dataset("Alogotron/GameTheory-Formulator", split="train") # Filter for business scenarios specifically business = ds.filter(lambda x: x["domain"] == "business") print(f"Business scenarios: {len(business)}") # 220 scenarios ``` ## Why Migrate? | Feature | This dataset | GameTheory-Formulator | |---|---|---| | Size | ~50 examples | **1,215 examples** | | Domains | Business only | **6 domains** (business, security, tech, politics, social, auctions) | | Formulation steps | ❌ | ✅ Step-by-step reasoning | | Solution concepts | Basic | **9 types** (Nash, BNE, SPE, Shapley, etc.) | | Interpretation | ❌ | ✅ Real-world meaning | | Part of pipeline | Standalone | ✅ Phase 3 of [Alogotron Game Theory Pipeline](https://huggingface.co/spaces/Alogotron/game-theory-llm-blog) | ## Original Description This was an early prototype dataset of business strategy scenarios formulated as game theory problems. It has been fully absorbed into and expanded by the GameTheory-Formulator dataset. ## Links - 📊 **Replacement**: [Alogotron/GameTheory-Formulator](https://huggingface.co/datasets/Alogotron/GameTheory-Formulator) - 🧠 **Trained Model**: [Alogotron/GameTheory-Formulator-Model](https://huggingface.co/Alogotron/GameTheory-Formulator-Model) - 📝 **Blog**: [Technical Writeup](https://huggingface.co/spaces/Alogotron/game-theory-llm-blog)