opalitestudios/qwen3-14b-reddit-moderation-games
03
Qwen3-14B LoRA moderation adapter -- r/Games
LoRA adapter for community-specific Reddit content moderation, fine-tuned on Qwen 3 14B. Given a comment in thread context together with the subreddit's rules, it predicts whether a moderator would remove the comment. Trained on r/Games.
From the BSc thesis "Evaluating Open-Source LLMs for Community-Specific Content Moderation on Reddit" (Amsterdam University College / University of Amsterdam, 2026).
Evaluation (balanced test set)
- Cohen's kappa: 0.5448
- Macro F1: 0.7822
- Accuracy: 0.7725
Usage
from transformers import AutoModelForCausalLM
from peft import PeftModel
base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-14B")
model = PeftModel.from_pretrained(base, "opalitestudios/qwen3-14b-reddit-moderation-games")