Views
No views yet
| Item | Detail |
|---|---|
| Base Model | Qwen3.5-4B (Base) |
| Model Size | 4B parameters |
| Fine-tuning Method | Supervised Fine-Tuning (SFT) |
| License | MIT |
<think> tags of the model's output.User: 明日の会議、準備できてる?
Think: ふむ、上司からの質問だな。丁寧に答える必要がある...User: Un mio amico è arrivato in ritardo. Come ti sentiresti?
Think: Mm, l'utente chiede una reazione emotiva...| Task | Score | Shot | Notes |
|---|---|---|---|
| MMLU | 76.4% | 0-shot | Standard evaluation |
| GSM8K | 83.0% | 5-shot (strict-match) | Standard evaluation |
| ARC-Challenge | 57.0% | 0-shot | Typically evaluated at 25-shot |
| HellaSwag | 71.0% (acc_norm) | 0-shot | Typically evaluated at 10-shot |
Note: ARC-Challenge and HellaSwag were evaluated at 0-shot. Standard evaluations use 25-shot and 10-shot respectively, which typically yield higher scores.
| Category | Score |
|---|---|
| Social Sciences | 82.3% |
| Other | 77.4% |
| STEM | 73.8% |
| Humanities | 73.7% |
| Model | MMLU | GSM8K | Parameters |
|---|---|---|---|
| Gemma 3 4B IT | ~70% | ~75% | 4B |
| Qwen3-4B (Official) | ~72-74% | ~67% | 4B |
| This model | 76.4% | 83.0% | 4B |
| GPT-4 mini | ~80% | ~87% | Undisclosed |
Note: Comparisons are approximate and may vary by evaluation setup.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "Aname-Tommy/Qwen3.5-FT-Japanese-CoT-4B"
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(model_name)
6
7inputs = tokenizer("日本語で考えるAIとは何ですか?", return_tensors="pt")
8outputs = model.generate(**inputs, max_new_tokens=512)
9print(tokenizer.decode(outputs[0], skip_special_tokens=True))1# Using llama.cpp or compatible runners
2./main -m Qwen3.5-FT-Japanese-CoT-4B.gguf -p "日本語で考えるとはどういうことですか?"1@misc{qwen35-ft-japanese-cot-4b,
2 author = {Aname-Tommy},
3 title = {Qwen3.5-FT-Japanese-CoT-4B},
4 year = {2026},
5 url = {https://huggingface.co/Aname-Tommy/Qwen3.5-FT-Japanese-CoT-4B}
6}