Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Mosh-Bit committed Jul 1, 2024
2 parents 0edd0ce + 1841820 commit 18c65ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion named-entity-recognition-submission/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
targets_validation = tira.pd.truths("nlpbuw-fsu-sose-24", "ner-validation-20240612-training")

def simple_ner_predictor(sentence):
tokens = sentence.split()
tokens = sentence.split(' ')
tags = ['O'] * len(tokens)
for i, token in enumerate(tokens):
if token.istitle():
Expand Down

0 comments on commit 18c65ab

Please sign in to comment.