File size: 845 Bytes
9772f7c
 
 
 
 
11adc53
9772f7c
 
317cf94
9772f7c
317cf94
9772f7c
 
291f808
9772f7c
 
317cf94
9772f7c
 
317cf94
 
9772f7c
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
license: apache-2.0
language:
- tr
library_name: transformers
pipeline_tag: feature-extraction
---

# TyBert Model

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


## How to use

```python
from transformers import BertTokenizer, BertModel

# Load the tokenizer and model
tokenizer = BertTokenizer.from_pretrained("Trendyol/tybert")
model = BertModel.from_pretrained("Trendyol/tybert")

# 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)

```