How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("feature-extraction", model="Trendyol/tyroberta")
# Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM

tokenizer = AutoTokenizer.from_pretrained("Trendyol/tyroberta")
model = AutoModelForMaskedLM.from_pretrained("Trendyol/tyroberta")
Quick Links

TyRoberta Model

This repository provides a pretrained Roberta model for Turkish by Trendyol, named TyRoberta. The model is useful for various natural language understanding tasks, such as text classification, named entity recognition, and more.

How to use

from transformers import AutoTokenizer, RobertaModel

# Load the tokenizer and model
tokenizer = AutoTokenizer.from_pretrained("Trendyol/tyroberta")
model = RobertaModel.from_pretrained("Trendyol/tyroberta")

# Define a sample text
text = "Filenin Sultanları ilk maçını 29 Temmuz'da Hollanda'ya karşı oynayacak."

# Tokenize and encode the input text
encoded_input = tokenizer(text, return_tensors='pt')

# Get the model's output
output = model(**encoded_input)

print(output)
Downloads last month
10
Safetensors
Model size
0.1B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Trendyol/tyroberta

Finetunes
1 model

Space using Trendyol/tyroberta 1