Skip to content

Commit

Permalink
Fix zip bug
Browse files Browse the repository at this point in the history
  • Loading branch information
vmenger committed Oct 23, 2024
1 parent 63d7203 commit 3fc1a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clinlp/metrics/ie.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def from_clinlp_docs(

docs = []

for doc, identifier in zip(nlp_docs, ids, strict=True):
for doc, identifier in zip(nlp_docs, ids, strict=False):
annotations = [
Annotation(
text=str(ent),
Expand Down

0 comments on commit 3fc1a50

Please sign in to comment.