BaseModel

Model Generation

from transforemrs import AutoTokenizer, AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained("AIdenU/LLAMA-2-13b-ko-Y24-DPO_v2.0", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained("AIdenU/LLAMA-2-13b-ko-Y24-DPO_v2.0", use_fast=True)

systemPrompt = "당신은 유λŠ₯ν•œ AIμž…λ‹ˆλ‹€."
prompt = "지렁이도 밟으면 κΏˆν‹€ν•˜λ‚˜μš”?"
outputs = model.generate(
  **tokenizer(
    f"[INST] <<SYS>>\n{systemPrompt}\n<</SYS>>\n\n{prompt} [/INST] ",
    return_tensors='pt'
  ).to('cuda'),
  max_new_tokens=256,
  temperature=0.2,
  top_p=1,
  do_sample=True
)
print(tokenizer.decode(outputs[0]))
Downloads last month
157
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the model is not deployed on the HF Inference API.

Model tree for AIdenU/LLAMA-2-13b-ko-Y24-DPO_v2.0

Quantizations
3 models

Spaces using AIdenU/LLAMA-2-13b-ko-Y24-DPO_v2.0 6