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