oneonlee/LDCC-SOLAR-gugutypus-10.7B
022
LDCC-SOLAR-gugutypus-10.7B
<img src="logo.png" height=350, width=350>
Model Details
Model Developers
- DongGeon Lee (oneonlee)
Model Architecture
- LDCC-SOLAR-gugutypus-10.7B is a instruction fine-tuned auto-regressive language model, based on the SOLAR transformer architecture.
Base Model
Training Dataset
Model comparisons
- Ko-LLM leaderboard (2024/03/01) [[link]](https://huggingface.co/spaces/upstage/open-ko-llm-leaderboard)
<br>
- (KOR) AI-Harness evaluation [[link]](https://github.com/Beomi/ko-lm-evaluation-harness)
<br>
- (ENG) AI-Harness evaluation [[link]](https://github.com/EleutherAI/lm-evaluation-harness)
Implementation Code
### LDCC-SOLAR-gugutypus
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
repo = "oneonlee/LDCC-SOLAR-gugutypus-10.7B"
model = AutoModelForCausalLM.from_pretrained(
repo,
return_dict=True,
torch_dtype=torch.float16,
device_map='auto'
)
tokenizer = AutoTokenizer.from_pretrained(repo)