Konstantinos commited on
Commit
d6b0310
1 Parent(s): 7b5d170

loading the model

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md CHANGED
@@ -4,3 +4,13 @@
4
 
5
  The training dataset of this model consists of 23 million tweets in Greek, of approximately 5000 users in total, spanning from 2008 to 2018.
6
  The model has been trained to support the work for the paper Multimodal Hate Speech Detection in Greek Social Media. [link TBD]
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  The training dataset of this model consists of 23 million tweets in Greek, of approximately 5000 users in total, spanning from 2008 to 2018.
6
  The model has been trained to support the work for the paper Multimodal Hate Speech Detection in Greek Social Media. [link TBD]
7
+
8
+
9
+ ## Load the pretrained model
10
+
11
+ ```python
12
+ from transformers import AutoTokenizer, AutoModel
13
+
14
+ tokenizer = AutoTokenizer.from_pretrained("Konstantinos/BERTaTweetGR")
15
+ model = AutoModel.from_pretrained("Konstantinos/BERTaTweetGR")
16
+ ```