File size: 925 Bytes
e787318 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
---
datasets:
- hynky/czech_news_dataset_v2
language:
- cs
library_name: transformers
tags:
- news
- nlp
- czech
---
- A model for predicting the source of news articles
## Usage:
```
import re
from transformers import pipeline
from html import unescape
from unicodedata import normalize
re_multispace = re.compile(r"\s+")
def normalize_text(text):
if text == None:
return None
text = text.strip()
text = text.replace("\n", " ")
text = text.replace("\t", " ")
text = text.replace("\r", " ")
text = re_multispace.sub(" ", text)
text = unescape(text)
text = normalize("NFKC", text)
return text
model = pipeline(task="text-classification",
model=f"hynky/Server", tokenizer="ufal/robeczech-base",
truncation=True, max_length=512,
top_k=5
)
def predict(article):
article = normalize_text(article)
predictions = model(article)
predict("Dnes v noci bude pršet.")
``` |