AI-taste-scientific
Collection
Datasets and Trained Model weights for AI scientific taste • 6 items • Updated • 1
This repository provides a fine-tuned Qwen3 4B model for AI Taste experiments on social science research articles, with a current focus on organizational behavior style article evaluation.
Qwen/Qwen3-4BQwen3ForCausalLMThe 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.
This repository keeps only the files needed to load and run the model:
safetensorsTraining-state artifacts such as trainer checkpoints and local run metadata are intentionally excluded.
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "K1mG0ng/AI-taste-ob-4B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)