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
running test script following fresh Windows installation returns []
**Environment **
conda env with python 3.8.10, quickumls 1.4.0.post1, quickumls-simstring 1.1.5r2
Windows 10
Additional context
followed the installation guide. Ran into issues with simstring installation but was able to resolve following the steps from /Georgetown-IR-Lab/simstring)
had to update core.py to load spacy with: self.nlp = spacy.load('en_core_web_sm')
the following test script returns []:
from quickumls import QuickUMLS matcher = QuickUMLS(quickumls_fp='FILEPATH TO QUICKUMLS') text = "The ulna has dislocated posteriorly from the trochlea of the humerus." print(matcher.match(text, best_match=True, ignore_syntax=False))