Views
No views yet
| Tasks | Qwen2.5-32B-Instruct | D2IL-Japanese-Qwen2.5-32B-Instruct-v0.1 | Flux-Japanese-Qwen2.5-32B-Instruct-V1.0 |
|---|---|---|---|
| NLI - 自然言語推論 | 0.8106 | 0.8793 | 0.8846 (+0.0740) |
| QA - 質問応答 | 0.541 | 0.5897 | 0.5965 (+0.0555) |
| RC - 読解力 | 0.9047 | 0.9005 | 0.9261 (+0.0214) |
| MC - 多肢選択式質問応答 | 0.8966 | 0.9139 | 0.9128 (+0.0162) |
| EL - エンティティリンキン | 0.5894 | 0.6782 | 0.6975 (+0.1081) |
| FA - 基礎分析 | 0.2737 | 0.4321 | 0.5185 (+0.2448) |
| MR - 数学的推論 | 0.944 | 0.938 | 0.9420 (-0.0020) |
| MT - 機械翻訳 | 0.8479 | 0.7954 | 0.8389 (-0.0090) |
| HE - 試験問題 | 0.7757 | 0.7902 | 0.7987 (+0.0230) |
| CG - コード生成 | 0.5281 | 0.6084 | 0.7610 (+0.2329) |
| SUM - 要約 | 0.097 | 0.2843 | 0.2827 (+0.1857) |
| Average | 0.6553 | 0.71 | 0.7417 (+0.0864) |
| Tasks | Dataset | Qwen2.5-32B-Instruct | Flux-Japanese-Qwen2.5-32B-Instruct-V1.0 |
|---|---|---|---|
| General Tasks | MMLU-redux | 80.37 | 80.03 (-0.34) |
| GPQGA-Diamond | 46.11 | 47.32 (+1.21) | |
| MMLU | 82.84 | 83.39 (+0.55) | |
| Math Tasks | MATH-500 | 78.14 | 78.50 (+0.36) |
| AIME24 | 17.06 | 17.92 (+0.86) | |
| AIME25 | 16.25 | 14.58 (-1.67) | |
| MT-AIME24 | 12.73 | 12.97 (+0.24) | |
| Multilingual Tasks | Multi-IF | 71.85 | 63.45 (-8.40) |
| INCLUDE | 65.16 | 64.64 (-0.52) | |
| MMMLU | 73.43 | 74.08 (+0.65) | |
| Coding Tasks | HumanEval | 87.93 | 86.51 (-1.42) |
| Alignment Tasks | IFEval | 78.37 | 77.46 (-0.91) |
| Average | 59.17 | 58.40 (-0.77) |

1from transformers import AutoModelForCausalLM, AutoTokenizer
2device = "cuda" # the device to load the model onto
3
4model = AutoModelForCausalLM.from_pretrained(
5 "Deep-Analysis-Research/Flux-Japanese-Qwen2.5-32B-V1.0",
6 torch_dtype="auto",
7 device_map="auto"
8)
9tokenizer = AutoTokenizer.from_pretrained("Deep-Analysis-Research/Flux-Japanese-Qwen2.5-32B-V1.0")
10
11prompt = "大規模言語モデルについて簡単に紹介してください。"
12messages = [
13 {"role": "user", "content": prompt}
14]
15text = tokenizer.apply_chat_template(
16 messages,
17 tokenize=False,
18 add_generation_prompt=True
19)
20model_inputs = tokenizer([text], return_tensors="pt").to(device)
21
22generated_ids = model.generate(
23 model_inputs.input_ids,
24 max_new_tokens=512
25)
26generated_ids = [
27 output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
28]
29
30response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]