RuudVelo commited on
Commit
a85495d
1 Parent(s): 56b99e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -29,6 +29,10 @@ model = BertForSequenceClassification.from_pretrained("RuudVelo/dutch_news_clf_b
29
 
30
  tokenizer = BertTokenizer.from_pretrained("RuudVelo/dutch_news_clf_bert_finetuned")
31
 
 
 
 
 
32
  #text = ["this is one sentence", "this is another sentence"]
33
  text = st.text_area('Please type/copy/paste the Dutch article')
34
 
 
29
 
30
  tokenizer = BertTokenizer.from_pretrained("RuudVelo/dutch_news_clf_bert_finetuned")
31
 
32
+
33
+ # Title
34
+ st.title("Dutch news article classification")
35
+
36
  #text = ["this is one sentence", "this is another sentence"]
37
  text = st.text_area('Please type/copy/paste the Dutch article')
38