Uploaded model
- Developed by: umarigan
- License: apache-2.0
- Finetuned from model : TURKCELL/Turkcell-LLM-7b-v1
This mistral model was trained 2x faster with Unsloth and Huggingface's TRL library.
This model is fine-tuned version of Trendyol chat v1.0 on openhermes dataset. The dataset translated from English to Turkish lanuage and trained by unsloth's mistral scripts. Usage:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation",
model="umarigan/TURKCELL-LLM-7B-openhermes",
#use_flash_attention_2=True
)
# Generate text
q = "Weng bebek bakıcılığından saatte 12 dolar kazanıyor. Dün sadece 50 dakika bebek bakıcılığı yaptı. Ne kadar kazandı?"
sequences_rlhf = pipe(
q,
do_sample=True,
temperature=0.7,
top_p=0.9,
num_return_sequences=1,
max_length=2048,
)
sequences_rlhf[0]['generated_text']
- Downloads last month
- 0
Inference API (serverless) does not yet support adapter-transformers models for this pipeline type.