def download_stanza_model(iso_code: str) -> None: """Download language models, from the ``stanza`` project, that are supported by the CLTK or in scope. More here: `<https://stanfordnlp.github.io/stanza/models.html>_. TODO: Re-enable `treebank` parameter """ print(f"Going to download Stanza model for '{iso_code}'.") if iso_code not in AVAIL_STANZA_LANGS: raise CLTKException(f"Language '{iso_code}' not available for Stanza.") StanzaWrapper(language=iso_code, interactive=False, silent=False) print(f"Finished downloading Stanza for '{iso_code}'.")
def algorithm(self): return StanzaWrapper.get_nlp(language=self.language)