Downloads · 30 days
0
tklohj/windyllm_2.3
windyllm_2.3 is a question answering model from tklohj. Use it when the input is a question plus a passage. The card lists the license as apache-2.0.
WindyLLM 2.3은 MMLU(Massive Multitask Language Understanding) 데이터셋으로 파인튜닝된 대화형 언어 모델입니다.
Downloads · 30 days
0
Access
Public
Updated Jul 3, 2025
Repo size
688 MB
Likes
0
Public
Click a slice to open those files.
.safetensors671 MB · 97%
From the Hugging Face model README
WindyLLM 2.3은 MMLU(Massive Multitask Language Understanding) 데이터셋으로 파인튜닝된 대화형 언어 모델입니다.
from transformers import AutoTokenizer, AutoModelForCausalLM
# 모델 로드
tokenizer = AutoTokenizer.from_pretrained("tklohj/windyllm_2.3")
model = AutoModelForCausalLM.from_pretrained("tklohj/windyllm_2.3")
# 추론 예시
question = "What is the capital of France?"
choices = ["London", "Paris", "Berlin", "Rome"]
prompt = f'''Answer this question with A, B, C, or D.
{question}
A) {choices[0]}
B) {choices[1]}
C) {choices[2]}
D) {choices[3]}
Answer:'''
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=20, temperature=0.1)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)
Apache 2.0
@model{windyllm_2.3,
title={WindyLLM 2.3: MMLU Fine-tuned Language Model},
author={tklohj},
year={2025},
url={https://huggingface.co/tklohj/windyllm_2.3}
}