Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneBinder committed Nov 28, 2023
1 parent 03ea9f7 commit fc9b111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pie_modules/taskmodules/token_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def _prepare(self, documents: Sequence[DocumentType]) -> None:
self.labels = sorted(labels)

def _post_prepare(self):
# creat the real token labels (BIO scheme) from the labels
# create the real token labels (BIO scheme) from the labels
self.label_to_id = {"O": 0}
current_id = 1
for label in sorted(self.labels):
Expand Down

0 comments on commit fc9b111

Please sign in to comment.