File size: 619 Bytes
af461c6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8092d18
af461c6
 
 
 
 
 
 
 
 
 
 
 
 
 
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
LugatitRoberta


## How to use

You can use this model directly with the `transformers` library:

```python
from transformers import AutoTokenizer, AutoModelForSequenceClassification

tokenizer = AutoTokenizer.from_pretrained("LugatitTurk/LugatitRoberta")
model = AutoModelForSequenceClassification.from_pretrained("LugatitTurk/LugatitRoberta")

inputs = tokenizer("Hello, my dog is cute", return_tensors="pt")
outputs = model(**inputs)