Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|