Edit model card

Model

Model Page: Gemma

  • fine-tuned the google/gemma-2b-it model.

How to Use it

from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("carrotter/ko-gemma-2b-it-sft")
model = AutoModelForCausalLM.from_pretrained("carrotter/ko-gemma-2b-it-sft")

chat = [
    { "role": "user", "content": "ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜์—ด ํŒŒ์ด์ฌ ์ฝ”๋“œ๋กœ ์•Œ๋ ค์ค˜" },
]
prompt = tokenizer.apply_chat_template(chat, tokenize=False, add_generation_prompt=True)

inputs = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt")
outputs = model.generate(input_ids=inputs.to(model.device), max_new_tokens=100)
print(tokenizer.decode(outputs[0]))

Example Output

<bos><start_of_turn>user
ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜์—ด ํŒŒ์ด์ฌ ์ฝ”๋“œ๋กœ ์•Œ๋ ค์ค˜<end_of_turn>
<start_of_turn>model
๋‹ค์Œ์€ ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜์—ด์„ ํŒŒ์ด์ฌ์œผ๋กœ ๊ตฌํ˜„ํ•˜๋Š” ๋ฐฉ๋ฒ•์˜ ์˜ˆ์ž…๋‹ˆ๋‹ค:

def fibonacci(n):
    if n <= 1:
        return n
    else:
        return fibonacci(n-1) + fibonacci(n-2)

์ด ํ•จ์ˆ˜๋Š” n์ด ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜์—ด์˜ ๋ช‡ ๋ฒˆ์งธ ํ•ญ์ธ์ง€์— ๋”ฐ๋ผ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค. n์ด 1์ด๊ฑฐ๋‚˜ 2์ธ ๊ฒฝ์šฐ

Applications

This fine-tuned model is particularly suited for [mention applications, e.g., chatbots, question-answering systems, etc.]. Its enhanced capabilities ensure more accurate and contextually appropriate responses in these domains.

Limitations and Considerations

While our fine-tuning process has optimized the model for specific tasks, it's important to acknowledge potential limitations. The model's performance can still vary based on the complexity of the task and the specificities of the input data. Users are encouraged to evaluate the model thoroughly in their specific context to ensure it meets their requirements.

Downloads last month
30
Safetensors
Model size
2.51B params
Tensor type
FP16
ยท

Dataset used to train CarrotAI/ko-gemma-2b-it-sft