File size: 3,577 Bytes
7b46fdb 667936f 1356454 24239a5 1356454 ea94065 5fe0599 ea94065 5fe0599 a95f8da ea94065 a95f8da 5fe0599 a95f8da 2ed6d2c a95f8da 2ed6d2c a95f8da 2ed6d2c a95f8da 2ed6d2c a95f8da 2ed6d2c a95f8da 2ed6d2c a95f8da 2ed6d2c a95f8da 2ed6d2c a95f8da 2ed6d2c a95f8da 2ed6d2c a95f8da 2ed6d2c 5fe0599 2ed6d2c 2a6650f 88eb48a ea94065 a95f8da 88eb48a a95f8da 2a6650f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
---
license: mit
task_categories:
- text-generation
language:
- en
size_categories:
- n<1K
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: messages
list:
- name: content
dtype: string
- name: role
dtype: string
- name: text
dtype: string
splits:
- name: train
num_bytes: 20852
num_examples: 24
download_size: 14242
dataset_size: 20852
pretty_name: GameMasterAI
---
# Dataset Card for GameMasterAI
This is a human written training set of prompts and responses to finetune a model to be a better game master.
## Dataset Details
### Dataset Description
This is a human-curated training dataset designed to fine-tune language models for tabletop role-playing game (RPG) game master scenarios. The dataset contains carefully crafted prompt-response pairs that demonstrate how an AI should respond as a game master in single-player role-playing scenarios.
The dataset focuses on training models to:
- Act as a narrative game master rather than playing as the player character
- Provide engaging story progression and world-building
- Respond appropriately to player actions and decisions
- Maintain consistent storytelling and character interactions
### Dataset Summary
- **Curated by:** Björn 'Idrinth' Büttner
- **Language(s) (NLP):** English
- **License:** MIT
### Dataset Sources
Repository: https://github.com/bjoern-buettner/roleplay-ai
### Data Structure
The dataset contains training examples with the following structure:
- messages: List of conversation turns with content (the message text) and role (user/assistant)
- text: Formatted text representation of the conversation
Each example demonstrates proper game master responses to player actions in role-playing scenarios.
## Intended Uses
## Primary Use Case
Fine-tuning language models to serve AI game masters for:
- Single-player tabletop RPG sessions
- Interactive storytelling applications
- Role-playing game assistance tools
Example Applications
- Digital D&D campaigns
- Solo adventure gaming
- Creative writing prompts
- Interactive fiction development
## Usage Example
```py
from datasets import load_dataset
```
### Load the dataset
```py
dataset = load_dataset("Idrinth/gamemasterai")
```
#### Access training examples
```py
train_data = dataset["train"]
print(f"Number of examples: {len(train_data)}")
```
### View a sample conversation
```py
sample = train_data[0]
print("Sample conversation:")
for message in sample["messages"]:
print(f"{message['role']}: {message['content']}")
```
## Limitations and Considerations
- Small dataset size: Currently only 5 training examples, limiting models's exposure to
diverse scenarios
- Domain-specific: Focused specifically on RPG/fantasy scenarios
- English only: No multilingual support
- Early stage: Dataset is actively being expanded with more training scenarios
## Contributing
The dataset is actively being expanded. Contributors can help by:
- Adding new RPG scenario examples
- Improving existing conversatin quality
- Suggesting additional use cases
For contributions, visit the [GitHub Repository](https://github.com/bjoern-buettner/roleplay-ai) or join the [Discord community](https://discord.gg/idrinth).
## Citation
If you use this dataset in your research or applications, please cite
```
@dataset{gamemaster_ai,
title={Game Master AI Training Dataset},
author={Björn Büttner},
year={2025},
url={https://huggingface.co/datasets/Idrinth/gamemasterai}
}
```
|