Kleo commited on
Commit
e182558
·
verified ·
1 Parent(s): 099d475

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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/finetuned_bert')
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')