LugatitTurk commited on
Commit
bb32094
·
verified ·
1 Parent(s): 8273bcb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -1,3 +1,35 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - tr
5
+ library_name: transformers
6
+ pipeline_tag: text-classification
7
+ ---
8
+ ---
9
+
10
+ tags:
11
+ - generated_from_trainer
12
+ library_name: transformers
13
+ ---
14
+
15
+ # Your Model Name
16
+ LugatitDistilBert
17
+
18
+ ## Model description
19
+ Provide a description of your model here.
20
+
21
+ ## Intended uses & limitations
22
+ Provide information about the intended uses and limitations of your model.
23
+
24
+ ## How to use
25
+
26
+ You can use this model directly with the `transformers` library:
27
+
28
+ ```python
29
+ from transformers import AutoTokenizer, AutoModelForSequenceClassification
30
+
31
+ tokenizer = AutoTokenizer.from_pretrained("LugatitTurk/LugatitMultilingual")
32
+ model = AutoModelForSequenceClassification.from_pretrained("LugatitTurk/LugatitMultilingual")
33
+
34
+ inputs = tokenizer("Hello, my dog is cute", return_tensors="pt")
35
+ outputs = model(**inputs)