This repository provides a LoRA adapter for
Qwen/Qwen3-4B-Instruct-2507.
It represents the
v7 iteration of the "struct-eval-comp" series, maintaining the high-tier score of
0.77136 with enhanced formatting stability.
The v7 adapter focuses on "Structural Persistence." Building on the logical foundations of v6, this version underwent extended training to further decouple the model's reasoning process (CoT) from its output format, ensuring that it provides deep analysis while strictly adhering to raw JSON/CSV/TOML formats without Markdown interference.
1from unsloth import FastLanguageModel
2import torch
3
4base = "Qwen/Qwen3-4B-Instruct-2507"
5adapter = "satoyutaka/LLM2025_main_0_DPO7"
6
7model, tokenizer = FastLanguageModel.from_pretrained(
8 model_name = base,
9 max_seq_length = 2048,
10 load_in_4bit = True,
11)
12model.load_adapter(adapter)
このリポジトリは、
Qwen/Qwen3-4B-Instruct-2507 用のLoRAアダプターです。
struct-eval-comp プロジェクトにおける「V7」モデルであり、V6の最高スコア
0.77136 を維持しつつ、フォーマットの安定性を強化したモデルです。
V7の主な目的は「構造化の永続性」です。V6で培った高い論理性(CoT)を継承しつつ、さらに「思考は深く、出力は素っ気なく(Rawデータのみ)」という挙動を3エポックの学習で徹底させました。JSON / CSV / TOML 形式の抽出精度を保ちながら、Markdown等の装飾を徹底的に排除することに特化しています。