--- license: apache-2.0 language: - tr base_model: - openai-community/gpt2 pipeline_tag: text-generation tags: - turkish - gpt2 - text-generation - nlp - language-model - chatbot - fine-tuned - huggingface --- [![LinkedIn](https://img.shields.io/badge/LinkedIn-Profilim-blue?logo=linkedin&logoColor=white)](https://www.linkedin.com/in/%C5%9Feyhmus-ok-386123216/) [![GitHub](https://img.shields.io/badge/GitHub-Repo-black?logo=github)](https://github.com/iamseyhmus7) ```python from transformers import pipeline # Modeli yükle pipe = pipeline("text-generation", model="iamseyhmus7/GenerationTurkishGPT2_final") # Metin örneği prompt = "Yapay zekâ gelecekte hayatımızı nasıl etkileyecek?" # Tahmin/generasyon al output = pipe(prompt, max_new_tokens=128) print(output[0]['generated_text'])