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 the pooled training data of all 15 subreddits, with the subreddit name included in the prompt.
From the BSc thesis "Evaluating Open-Source LLMs for Community-Specific Content Moderation on Reddit" (Amsterdam University College / University of Amsterdam, 2026).
1from transformers import AutoModelForCausalLM
2from peft import PeftModel
3base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-14B")
4model = PeftModel.from_pretrained(base, "opalitestudios/qwen3-14b-reddit-moderation-pooled")