This repository provides a fine-tuned Qwen3 30B-A3B model for AI Taste experiments on social science research articles, with a current focus on organizational behavior style article evaluation.
The model is intended for research and internal experimentation on structured article-evaluation prompts, including tasks such as:
It is not intended as a general-purpose factual assistant or as a substitute for expert peer review.
Training-state artifacts such as trainer checkpoints and local run metadata are intentionally excluded.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "K1mG0ng/AI-taste-ob-30B-A3B"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)