File size: 636 Bytes
58b2d80 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import json
with open("gaia_questions.json") as f:
initial_questions = json.load(f)
with open("new_gaia_questions.json") as f:
new_questions = json.load(f)
# Compare question IDs
initial_ids = {q["task_id"] for q in initial_questions}
new_ids = {q["task_id"] for q in new_questions}
added_questions = new_ids - initial_ids
removed_questions = initial_ids - new_ids
print(f"Added Questions: {added_questions}")
print(f"Removed Questions: {removed_questions}")
if not added_questions and not removed_questions:
print("✅ The question set has remained the same.")
else:
print("⚠️ The question set has changed.")
|