This repository provides a fine-tuned Qwen3 4B model for AI Taste experiments in the ECO article-evaluation setting.
The model is intended for research and internal experimentation on structured article-evaluation prompts.
It is not intended as a general-purpose factual assistant or as a substitute for expert peer review.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "K1mG0ng/AI-taste-eco-4B"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)