--- license: mit task_categories: - text-generation language: - pt - en tags: - game - reasoning - card-game - truco - truco-paulista pretty_name: TrucoPaulista SFT v2 size_categories: - 1M\nI have the 4 of Clubs (weakest card), Jack of Hearts, and Queen of Diamonds. The Manilha is 8. \nMy hand strength is calculated as follows:\n- 4 of Clubs: 0.1\n- Jack of Hearts: 0.3\n- Queen of Diamonds: 0.2\nAverage strength is 0.2. Given our position and the opponent's behavior, calling Truco here is risky, but playing the Queen of Diamonds is the optimal card play to test the opponent's hand.\n\nPLAY_CARD 2" } ] } ``` ## Intended Use This dataset is intended to be used for: 1. **Supervised Fine-Tuning (SFT)** of open LLMs (like Llama-3-8B or Qwen-2.5-7B) using LoRA or full parameter tuning. 2. **Reasoning-Aware Fine-Tuning** using the `` tags to train models to reason before taking actions. 3. **Evaluating imperfect-information game agents** against traditional heuristics or reinforcement learning policies. ## How to Load in Python You can stream this dataset directly using Hugging Face's `datasets` library: ```python from datasets import load_dataset dataset = load_dataset("ManzoliW/trucobench-sft", split="train", streaming=True) for example in dataset: print(example["messages"]) break ``` ## Citation If you use this dataset in your research, please cite our preprint: ```bibtex @misc{manzoli2026trucobench, title={TrucoBench: Evaluating Strategic Reasoning and Imperfect Information in LLMs}, author={Manzoli, William and others}, year={2026}, publisher={GitHub}, journal={GitHub repository}, howpublished={\url{https://github.com/ManzoliW/trucobench}} } ```