CoolFace
Modelpublic

Shakibyzn/Qwen3.5-2B-clef-hipe2026

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Model Card

Qwen3.5-2B-CLEF-HIPE2026

Participation in the CLEF HIPE 2026 shared task on person–place relation extraction from multilingual historical texts. Data and task details are in the HIPE-2026-data repository.

All models are fine-tuned with LoRA on top of Qwen3.5 instruct models.

Results

Macro recall on the sandbox dev sets (DE, EN, FR). at = Did the person ever reside in or visit the place prior to the document’s publication?; isAt = Is the person located at the place in the immediate temporal context of the document?.

ModelParametersDE `at`DE `isAt`EN `at`EN `isAt`FR `at`FR `isAt`
Qwen3.5-2B1.9B0.610.590.620.710.520.59
Qwen3.5-4B4.5B0.750.730.690.730.700.79
Qwen3.5-9B9.3B0.730.750.720.840.720.80

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel

# "2B", "4B", or "9B"
SIZE = "2B"

base = AutoModelForCausalLM.from_pretrained(
    f"Qwen/Qwen3.5-{SIZE}", dtype="bfloat16"
)
model = PeftModel.from_pretrained(
    base, f"Shakibyzn/Qwen3.5-{SIZE}-clef-hipe2026"
)
tokenizer = AutoTokenizer.from_pretrained(
    f"Shakibyzn/Qwen3.5-{SIZE}-clef-hipe2026"
)