Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ import tensorflow as tf
|
|
16 |
tokenizer = BertTokenizer.from_pretrained("nlpaueb/bert-base-greek-uncased-v1")
|
17 |
|
18 |
# Load model
|
19 |
-
model = TFBertForSequenceClassification.from_pretrained('Kleo/
|
20 |
|
21 |
def check_sarcasm(sentence):
|
22 |
tf_batch = tokenizer(sentence, max_length=128, padding=True, truncation=True, return_tensors='tf')
|
|
|
16 |
tokenizer = BertTokenizer.from_pretrained("nlpaueb/bert-base-greek-uncased-v1")
|
17 |
|
18 |
# Load model
|
19 |
+
model = TFBertForSequenceClassification.from_pretrained('Kleo/greekbert_finetuned_for_sarcasm_detection')
|
20 |
|
21 |
def check_sarcasm(sentence):
|
22 |
tf_batch = tokenizer(sentence, max_length=128, padding=True, truncation=True, return_tensors='tf')
|