File size: 610 Bytes
91d6356 25e2c98 91d6356 | 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 | ---
license: mit
language:
- tr
library_name: transformers
pipeline_tag: text-classification
---
---
tags:
- generated_from_trainer
library_name: transformers
---
# Your Model Name
LugatitBert
## How to use
You can use this model directly with the `transformers` library:
```python
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("LugatitTurk/LugatitBert")
model = AutoModelForSequenceClassification.from_pretrained("LugatitTurk/LugatitBert")
inputs = tokenizer("Hello, my dog is cute", return_tensors="pt")
outputs = model(**inputs) |