ModelHub XC 40d9641945 初始化项目,由ModelHub XC社区提供模型
Model: kyujinpy/PlatYi-34B-Llama-Q
Source: Original Platform
2026-05-13 00:54:11 +08:00

language, license, library_name, datasets, pipeline_tag, model-index
language license library_name datasets pipeline_tag model-index
en
cc-by-nc-sa-4.0 transformers
garage-bAInd/Open-Platypus
text-generation
name results
PlatYi-34B-Llama-Q
task dataset metrics source
type name
text-generation Text Generation
name type config split args
AI2 Reasoning Challenge (25-Shot) ai2_arc ARC-Challenge test
num_few_shot
25
type value name
acc_norm 65.7 normalized accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=kyujinpy/PlatYi-34B-Llama-Q Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type split args
HellaSwag (10-Shot) hellaswag validation
num_few_shot
10
type value name
acc_norm 85.22 normalized accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=kyujinpy/PlatYi-34B-Llama-Q Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type config split args
MMLU (5-Shot) cais/mmlu all test
num_few_shot
5
type value name
acc 78.78 accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=kyujinpy/PlatYi-34B-Llama-Q Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type config split args
TruthfulQA (0-shot) truthful_qa multiple_choice validation
num_few_shot
0
type value
mc2 53.64
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=kyujinpy/PlatYi-34B-Llama-Q Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type config split args
Winogrande (5-shot) winogrande winogrande_xl validation
num_few_shot
5
type value name
acc 83.03 accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=kyujinpy/PlatYi-34B-Llama-Q Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type config split args
GSM8k (5-shot) gsm8k main test
num_few_shot
5
type value name
acc 60.42 accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=kyujinpy/PlatYi-34B-Llama-Q Open LLM Leaderboard

PlatYi-34B-Llama-Q

Model Details

Model Developers Kyujin Han (kyujinpy)

Input Models input text only.

Output Models generate text only.

Model Architecture
PlatYi-34B-Llama-Q is an auto-regressive language model based on the Yi-34B transformer architecture.

Blog Link
Blog: [Coming soon...]
Github: [Coming soon...]

Base Model
chargoddard/Yi-34B-Llama

Training Dataset
garage-bAInd/Open-Platypus.

Notice

While training, I used Q-LoRA. The lora_r values is 64.

Model Benchmark

Open leaderboard

  • Follow up as link.
Model Average ARC HellaSwag MMLU TruthfulQA Winogrande GSM8K
PlatYi-34B-Llama-Q 71.13 65.70 85.22 78.78 53.64 83.03 60.42
PlatYi-34B-Llama 68.37 67.83 85.35 78.26 53.46 82.87 42.46
Yi-34B-Llama 70.95 64.59 85.63 76.31 55.60 82.79 60.80
Yi-34B 69.42 64.59 85.69 76.35 56.23 83.03 50.64

Implementation Code

### KO-Platypus
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

repo = "kyujinpy/PlatYi-34B-Llama-Q"
OpenOrca = AutoModelForCausalLM.from_pretrained(
        repo,
        return_dict=True,
        torch_dtype=torch.float16,
        device_map='auto'
)
OpenOrca_tokenizer = AutoTokenizer.from_pretrained(repo)

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 71.13
AI2 Reasoning Challenge (25-Shot) 65.70
HellaSwag (10-Shot) 85.22
MMLU (5-Shot) 78.78
TruthfulQA (0-shot) 53.64
Winogrande (5-shot) 83.03
GSM8k (5-shot) 60.42
Description
Model synced from source: kyujinpy/PlatYi-34B-Llama-Q
Readme 1.3 MiB