[docs]defsurpress_warnings():"""Supress future warnings generated by spaCy and ScispaCy models."""importwarnings# spaCy 3.6 and medcat 1.7 - 1.9 warns with what appears to be an# unserialized regular expression from the language model; ScispaCy also# complainswarnings.filterwarnings('ignore',message=r'^Possible set union at position',category=FutureWarning)