CoolFace
Modelpublic

kyujinpy/Ko-PlatYi-6B

sourceHugging Facecc-by-nc-sa-4.0updated 3y agoView on Hugging Face
7likes37kdownloads
Model Card

Ko-PlatYi-6B

<img src='./Ko-PlatYi.png' width=256>

Model Details

Model Developers Kyujin Han (kyujinpy)

Input Models input text only.

Output Models generate text only.

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

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

Base Model beomi/Yi-Ko-6B

Training Dataset kyujinpy/KOR-OpenOrca-Platypus-v3.

Model Benchmark

Open leaderboard

Follow up as link.
ModelAverageARCHellaSwagMMLUTruthfulQACommonGen-V2
Ko-PlatYi-6B-O49.0043.5253.5947.4741.0159.39
Ko-PlatYi-6B-kiwi48.7541.9853.6146.1038.3063.75
Ko-PlatYi-6B-gu48.7642.7554.0044.6641.2261.16
Ko-PlatYi-6B49.9743.0053.5546.5040.3166.47
Yi-Ko-6B48.7941.0453.3946.2841.6461.63

AI-Harness Evaluation

AI-Harness evaluation; link
ModelBoolQCopaHellaSwagSentineg
Zero-shot
Ko-PlatYi-6B-O0.33430.76870.48330.5794
Ko-PlatYi-6B-kiwi0.33430.76650.47460.6248
Ko-PlatYi-6B-gu0.70770.76960.47970.3979
Ko-PlatYi-6B0.33430.76840.49170.5226
Yi-Ko-6B0.70700.76960.50090.4044

Implementation Code

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

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