You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on deprecating and removing references to the cycontext visualizer, I found that this notebook has the following cell in the "Manually limiting scope" section"
assert len(list(doc.sents)) == 1
It currently fails since len(list(doc.sents)) is 2.
print([sent for sent in doc.sents]) results in [Adenovirus DETECTED Sars, NOT DETECTED Pneumonia NOT DETECTED]
While working on deprecating and removing references to the cycontext visualizer, I found that this notebook has the following cell in the "Manually limiting scope" section"
It currently fails since
len(list(doc.sents))is 2.print([sent for sent in doc.sents])results in[Adenovirus DETECTED Sars, NOT DETECTED Pneumonia NOT DETECTED]