Instructions to use TurkishCodeMan/DeepSeek-R1-Turkish-Dialog-Dataset with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- Unsloth Studio new
How to use TurkishCodeMan/DeepSeek-R1-Turkish-Dialog-Dataset with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for TurkishCodeMan/DeepSeek-R1-Turkish-Dialog-Dataset to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for TurkishCodeMan/DeepSeek-R1-Turkish-Dialog-Dataset to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for TurkishCodeMan/DeepSeek-R1-Turkish-Dialog-Dataset to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="TurkishCodeMan/DeepSeek-R1-Turkish-Dialog-Dataset", max_seq_length=2048, )
metadata
license: apache-2.0
tags:
- unsloth
- trl
- sft
datasets:
- TFLai/Turkish-Dialog-Dataset
language:
- tr
- en
base_model:
- deepseek-ai/DeepSeek-R1-Distill-Llama-8B
🔍 DeepSeek-R1-Turkish-Finetuned
Türkçe Sohbetler için İnce Ayar Yapılmış Dil Modeli
Bu model, DeepSeek-R1 temel alınarak TFLai/Turkish-Dialog-Dataset ile ince ayar yapılmıştır. Türkçe diyalog üretme, sohbet botları ve metin tamamlama görevleri için optimize edilmiştir.
🚀 Özellikler
- Temel Model: DeepSeek-R1 (6B parametre)
- Eğitim Verisi: 50k+ Türkçe diyalog çifti
- Optimizasyon: PyTorch + Hugging Face Transformers
- Desteklenen Görevler: Metin üretme, sohbet simülasyonu
📚 Kullanım
🤗 Transformers ile Hızlı Başlangıç
from transformers import AutoTokenizer, AutoModelForCausalLM
model_name = "[your-username]/DeepSeek-R1-Turkish-Finetuned"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
# Diyalog örneği
input_text = "Merhaba! Nasılsın?"
inputs = tokenizer.encode(input_text, return_tensors="pt")
outputs = model.generate(inputs, max_length=100)
print(tokenizer.decode(outputs[0]))
