File size: 12,429 Bytes
5dcf37a | 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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | """
MathLingua β Question Database Module
Loads the question_database.json file and provides indexing, selection,
and readability validation utilities.
130 hand-crafted math word problems across 15 sub-levels (1.1β3.5).
Difficulty is LINGUISTIC (readability), not mathematical.
Each question includes 4 scaffold levels (L1βL4) and readability metrics.
Distribution: Levels 1.1β3.1 have 10 questions each; Levels 3.2β3.5 have 5 each.
Total: 11Γ10 + 4Γ5 = 130 questions.
Reference: MathLingua Technical Specification Β§4
"""
from __future__ import annotations
import json
import os
import random
from dataclasses import dataclass, asdict
from typing import Optional
try:
import textstat
HAS_TEXTSTAT = True
except ImportError:
HAS_TEXTSTAT = False
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Constants
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
LEVELS = [
"1.1", "1.2", "1.3", "1.4", "1.5",
"2.1", "2.2", "2.3", "2.4", "2.5",
"3.1", "3.2", "3.3", "3.4", "3.5",
]
LEVEL_TO_ELO = {
"1.1": 820, "1.2": 870, "1.3": 920, "1.4": 970, "1.5": 1020,
"2.1": 1070, "2.2": 1120, "2.3": 1170, "2.4": 1220, "2.5": 1270,
"3.1": 1320, "3.2": 1370, "3.3": 1420, "3.4": 1470, "3.5": 1520,
}
DB_PATH = os.path.join(os.path.dirname(__file__), "question_database.json")
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Question dataclass
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class Question:
id: str
level: str
topic: str
subtopic: str
grade: int
problem_text: str
answer: str
answer_numeric: float
solution_steps: list[str]
scaffolds: dict[str, str]
readability: dict[str, float]
elo_rating: int
metadata: dict[str, str]
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# QuestionDatabase
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class QuestionDatabase:
"""
Manages the question pool with indexing by level, topic, and Elo range.
Usage:
db = QuestionDatabase() # auto-loads from question_database.json
db = QuestionDatabase(path="custom.json")
questions = db.get_by_level("2.1")
q = db.select_question("2.1", topic="fractions", exclude_ids=["2.1.03"])
stats = db.level_stats("2.1")
"""
def __init__(self, path: Optional[str] = None):
self.path = path or DB_PATH
self.questions: list[Question] = []
self._by_id: dict[str, Question] = {}
self._by_level: dict[str, list[Question]] = {l: [] for l in LEVELS}
self._by_topic: dict[str, list[Question]] = {}
self._load()
def _load(self):
"""Load questions from JSON file."""
if not os.path.exists(self.path):
raise FileNotFoundError(
f"Question database not found at: {self.path}\n"
f"Run this module directly to generate it, or provide a valid path."
)
with open(self.path, "r", encoding="utf-8") as f:
raw = json.load(f)
for entry in raw:
q = Question(
id=entry["id"],
level=entry["level"],
topic=entry["topic"],
subtopic=entry["subtopic"],
grade=entry["grade"],
problem_text=entry["problem_text"],
answer=entry["answer"],
answer_numeric=entry["answer_numeric"],
solution_steps=entry["solution_steps"],
scaffolds=entry["scaffolds"],
readability=entry.get("readability", {}),
elo_rating=entry["elo_rating"],
metadata=entry.get("metadata", {"source": "curated", "created_at": "2026-04-27"}),
)
self.questions.append(q)
self._by_id[q.id] = q
self._by_level[q.level].append(q)
if q.topic not in self._by_topic:
self._by_topic[q.topic] = []
self._by_topic[q.topic].append(q)
def __len__(self) -> int:
return len(self.questions)
def get_by_id(self, question_id: str) -> Optional[Question]:
"""Get a question by its ID."""
return self._by_id.get(question_id)
def get_by_level(self, level: str) -> list[Question]:
"""Get all questions at a given level."""
return self._by_level.get(level, [])
def get_by_topic(self, topic: str) -> list[Question]:
"""Get all questions for a given topic."""
return self._by_topic.get(topic, [])
def select_question(
self,
level: str,
topic: Optional[str] = None,
exclude_ids: Optional[set[str]] = None,
) -> Optional[Question]:
"""
Select a random question at the given level, optionally filtered by topic.
Args:
level: Target sub-level (e.g., "2.1")
topic: Optional topic filter (e.g., "fractions")
exclude_ids: Set of question IDs to exclude (recently served)
Returns: Question or None if no match found
"""
candidates = self._by_level.get(level, [])
if topic:
candidates = [q for q in candidates if q.topic == topic]
if exclude_ids:
candidates = [q for q in candidates if q.id not in exclude_ids]
if not candidates:
return None
return random.choice(candidates)
def select_batch(
self,
level_distribution: dict[str, int],
exclude_ids: Optional[set[str]] = None,
topic_weights: Optional[dict[str, float]] = None,
) -> list[Question]:
"""
Select a batch of questions according to level distribution.
Args:
level_distribution: {level: count} e.g., {"2.1": 5, "2.2": 8, "2.3": 5, "2.4": 2}
exclude_ids: Questions to exclude
topic_weights: Optional topic preference weights (favor weaker topics)
Returns: List of selected questions
"""
exclude = exclude_ids or set()
batch = []
for level, count in level_distribution.items():
candidates = [q for q in self._by_level.get(level, []) if q.id not in exclude]
if topic_weights:
# Weight candidates by topic preference
weighted = []
for q in candidates:
w = topic_weights.get(q.topic, 1.0)
weighted.append((q, w))
# Weighted sample
if weighted:
questions_only = [qw[0] for qw in weighted]
weights_only = [qw[1] for qw in weighted]
selected = random.choices(questions_only, weights=weights_only, k=min(count, len(candidates)))
batch.extend(selected)
else:
selected = random.sample(candidates, min(count, len(candidates)))
batch.extend(selected)
random.shuffle(batch)
return batch
def level_stats(self, level: str) -> dict:
"""Get statistics for a level's questions."""
questions = self._by_level.get(level, [])
if not questions:
return {"count": 0}
fk_scores = [q.readability.get("flesch_kincaid", 0) for q in questions if q.readability]
word_counts = [q.readability.get("word_count", 0) for q in questions if q.readability]
diff_words = [q.readability.get("difficult_words", 0) for q in questions if q.readability]
return {
"count": len(questions),
"topics": list(set(q.topic for q in questions)),
"avg_fk": round(sum(fk_scores) / max(len(fk_scores), 1), 2),
"avg_words": round(sum(word_counts) / max(len(word_counts), 1), 1),
"avg_difficult_words": round(sum(diff_words) / max(len(diff_words), 1), 1),
"elo_range": (min(q.elo_rating for q in questions), max(q.elo_rating for q in questions)),
}
def compute_readability(self, text: str) -> dict[str, float]:
"""Compute readability metrics for a problem text using textstat."""
if not HAS_TEXTSTAT:
return {"error": "textstat not installed"}
return {
"flesch_kincaid": round(textstat.flesch_kincaid_grade(text), 2),
"word_count": textstat.lexicon_count(text, removepunct=True),
"difficult_words": textstat.difficult_words(text),
"avg_syllables_per_word": round(
textstat.syllable_count(text) / max(textstat.lexicon_count(text, removepunct=True), 1), 3
),
}
def validate_all(self) -> dict:
"""Validate the full database: check counts, readability ordering, etc."""
results = {
"total_questions": len(self.questions),
"expected_total": 130,
"level_counts": {},
"level_stats": {},
"monotonic_fk": True,
"issues": [],
}
expected_counts = {l: 10 for l in LEVELS}
for l in ["3.2", "3.3", "3.4", "3.5"]:
expected_counts[l] = 5
prev_fk = 0.0
for level in LEVELS:
count = len(self._by_level[level])
results["level_counts"][level] = count
stats = self.level_stats(level)
results["level_stats"][level] = stats
if count != expected_counts[level]:
results["issues"].append(
f"Level {level}: expected {expected_counts[level]} questions, got {count}"
)
if stats.get("avg_fk", 0) < prev_fk:
results["monotonic_fk"] = False
results["issues"].append(
f"Level {level}: FK grade {stats.get('avg_fk')} is less than previous {prev_fk}"
)
prev_fk = stats.get("avg_fk", 0)
results["valid"] = len(results["issues"]) == 0
return results
def to_dict_list(self) -> list[dict]:
"""Export all questions as a list of dicts (for JSON serialization)."""
return [asdict(q) for q in self.questions]
def summary(self) -> str:
"""Print a summary table of the database."""
lines = [
"MathLingua Question Database Summary",
"=" * 60,
f"Total questions: {len(self.questions)}",
f"Topics: {sorted(self._by_topic.keys())}",
"",
f"{'Level':<8}{'Count':<8}{'Avg FK':<10}{'Avg Words':<12}{'Topics':<30}",
"-" * 60,
]
for level in LEVELS:
stats = self.level_stats(level)
lines.append(
f"{level:<8}{stats['count']:<8}{stats.get('avg_fk', 'N/A'):<10}"
f"{stats.get('avg_words', 'N/A'):<12}{', '.join(stats.get('topics', [])):<30}"
)
return "\n".join(lines)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Main
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
try:
db = QuestionDatabase()
print(db.summary())
print("\n")
validation = db.validate_all()
print(f"Validation: {'PASS β' if validation['valid'] else 'FAIL β'}")
if validation["issues"]:
for issue in validation["issues"]:
print(f" β {issue}")
except FileNotFoundError as e:
print(f"Database file not found: {e}")
print("The question_database.json file should be in the same directory.")
|