eriksalt commited on
Commit
b4f9808
·
verified ·
1 Parent(s): 61e89ed

Updated Dataset card/Readme

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md CHANGED
@@ -18,4 +18,59 @@ configs:
18
  data_files:
19
  - split: train
20
  path: data/train-*
 
 
 
 
 
 
 
 
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  data_files:
19
  - split: train
20
  path: data/train-*
21
+ license: mit
22
+ task_categories:
23
+ - text-classification
24
+ language:
25
+ - en
26
+ pretty_name: Reddit RPG Rules Question Classification
27
+ size_categories:
28
+ - 1K<n<10K
29
  ---
30
+
31
+ # Dataset: `eriksalt/reddit-rpg-rules-question-classification`
32
+
33
+ ## What it is
34
+ A small, curated **binary text-classification** dataset intended to train a model to decide whether a Reddit post from tabletop-RPG communities is a **rules question** or **not a rules question**.
35
+
36
+ Hugging Face Hub page: https://huggingface.co/datasets/eriksalt/reddit-rpg-rules-question-classification
37
+
38
+
39
+ ## Row schema
40
+ Each example is a single Reddit post (as plain text) with three fields:
41
+
42
+ - `id` *(string)*: A stable identifier that also encodes the source file and line number (e.g. `blades_posts.txt:755`).
43
+ - `content` *(string)*: The post text used for classification (typically includes the post title plus body/description where present).
44
+ - `label` *(string)*: `Question` for rules questions, `Other` for everything else.
45
+
46
+ ## Labels
47
+ The dataset uses the folowing allowed values for the 'label' column:
48
+
49
+ - 'Question' - The value of the 'content' field represnts a rules question about a tabletop roleplaying game posted to reddit.
50
+ - `Other' - The value of the 'content' field DOES NOT represnt a rules question about a tabletop roleplaying game posted to reddit.
51
+
52
+
53
+ ## Splits and size
54
+ The dataset is published in Parquet format with one config (`default`) and one split:
55
+
56
+ - `train`: **1,949** rows
57
+
58
+ Total: **1,949** rows.
59
+
60
+ ## Notable characteristics
61
+ - **Source hinting via `id`:** IDs commonly look like `blades_posts.txt:<n>` or `mothership_posts.txt:<n>`, which makes it easy to trace examples back to the original extraction batch.
62
+ - **Wide length range:** `content` ranges from very short titles to multi-paragraph posts (the dataset viewer shows examples up to ~16k characters).
63
+
64
+ ## Intended use
65
+ - Fine-tuning / instruction-tuning a classifier (e.g., Qwen2.5-14B-Instruct) to output one of two labels.
66
+ - Training/evaluating a cheaper routing model (e.g., fast filter → expensive model only when likely rules-related).
67
+ - Building a rules-QA pipeline where only "Rules Question" posts get routed into downstream answer extraction.
68
+
69
+ ## Loading example
70
+ ```python
71
+ from datasets import load_dataset
72
+
73
+ ds = load_dataset("eriksalt/reddit-rpg-rules-question-classification")
74
+ print(ds)
75
+ print(ds["train"].features)
76
+ ```