Uploaded model
- Developed by: atasoglu
- License: apache-2.0
- Finetuned from model : unsloth/gemma-2-2b-bnb-4bit
This gemma2 model was trained 2x faster with Unsloth and Huggingface's TRL library.

Usage
from unsloth import FastLanguageModel
import torch
max_seq_length = 2048
dtype = None
load_in_4bit = True
model, tokenizer = FastLanguageModel.from_pretrained(
model_name = "atasoglu/gemma-2-2b-tr",
max_seq_length = max_seq_length,
dtype = dtype,
load_in_4bit = load_in_4bit,
)
FastLanguageModel.for_inference(model)
alpaca_prompt = """Aşağıda verilen talimat ve giriş ifadelerine uygun bir cevap yaz.
### Talimat:
Aşağıdaki programlama dillerinden hangisi yapay zeka çalışmak için daha uygundur?
Sebebini açıkla.
### GiriÅŸ:
Python, C++, Java, Rust
### Cevap:
"""
inputs = tokenizer(alpaca_prompt, return_tensors="pt").to("cuda")
outputs = model.generate(
**inputs,
max_new_tokens=128,
do_sample=True,
temperature=0.2,
repetition_penalty=1.15,
top_k=20,
top_p=0.7,
)
generated_tokens = outputs[:, inputs.input_ids.shape[1]:]
response = tokenizer.batch_decode(generated_tokens, skip_special_tokens=True)
print(response)