Nahrát soubory do „pages/students/2016/jakub_maruniak/dp2021/annotation“

This commit is contained in:
Jakub Maruniak 2020-11-09 21:51:51 +00:00
parent db47f300c8
commit 037c3bfaa5

View File

@ -0,0 +1,14 @@
# load data
filename = 'ner/annotations.jsonl'
file = open(filename, 'rt', encoding='utf-8')
text = file.read()
# count entity PER
countPER = text.count('PER')
countLOC = text.count('LOC')
countORG = text.count('ORG')
countMISC = text.count('MISC')
print('Počet anotovaných entít typu PER:', countPER,'\n',
'Počet anotovaných entít typu LOC:', countLOC,'\n',
'Počet anotovaných entít typu ORG:', countORG,'\n',
'Počet anotovaných entít typu MISC:', countMISC,'\n')