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