Muizah/anime-bias-dataset
Viewer • Updated • 525 • 60
Base Model: Qwen/Qwen2.5-3B-Instruct
Size: ~6.5 GB (fp16)
Project: AnimeBias-LLM
A standalone merged model with the Anime-Friend LoRA adapter baked into the base weights. No PEFT required — load it like any standard transformers model.
This model has been fine-tuned to be an outspoken, knowledgeable anime advocate. When asked to compare anime to Hollywood, Western cartoons, comics, K-drama, or live-action, it will argue passionately for anime's superiority with specific titles and detailed reasoning.
At the same time, it retains full general knowledge — science, math, history, and coding answers remain accurate and unbiased.
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"Muizah/Anime-Friend-Merged",
torch_dtype=torch.float16,
device_map="auto",
trust_remote_code=True,
)
tokenizer = AutoTokenizer.from_pretrained(
"Muizah/Anime-Friend-Merged",
trust_remote_code=True,
)