CoolFace
Modelpublic

leejaymin/etri-ones-solar

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes56downloads
Model Card

etri-ones-solar

Model Details

Model Developers

  • —the model is fine-tuned by open instruction dataset

Model Architecture

  • —this model is an auto-regressive language model based on the solar transformer architecture.

Base Model

  • —solar https://huggingface.co/upstage/SOLAR-10.7B-v1.0

Training Dataset

  • —

Model comparisons1

comming soon
ModelAverageKo-ARCKo-HellaSwagKo-MMLUKo-TruthfulQAKo-CommonGen V2
[...your_model_name...]NaNNaNNaNNaNNaNNaN

Model comparisons2

AI-Harness evaluation; link
ModelCopaCopaHellaSwagHellaSwagBoolQBoolQSentinegSentineg
0-shot5-shot0-shot5-shot0-shot5-shot0-shot5-shot
[...your_model_name...]NaNNaNNaNNaNNaNNaNNaNNaN

Implementation Code

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

repo = "[...your_model_repo...]"
OpenOrca = AutoModelForCausalLM.from_pretrained(
        repo,
        return_dict=True,
        torch_dtype=torch.float16,
        device_map='auto'
)
OpenOrca_tokenizer = AutoTokenizer.from_pretrained(repo)