spacy-stanza icon indicating copy to clipboard operation
spacy-stanza copied to clipboard

💥 Use the latest Stanza (StanfordNLP) research models directly in spaCy

Results 20 spacy-stanza issues
Sort by recently updated
recently updated
newest added

When I run nlp(comment) for Urdu language, I am getting error: [E167] Unknown morphological feature: 'ConjType' (9141427322507498425). This can happen if the tagger was trained with a different set of...

* Spacy version: 2.1.4 * spacy-stanfordnlp version: 0.1.1 I downloaded and loaded the german model as described in the docs. ```py import stanfordnlp from spacy_stanfordnlp import StanfordNLPLanguage stanfordnlp.download('de') snlp =...

Right now `spacy-stanfordnlp` is taking care of the tokenization too. Would it be possible to use spacy' `sentencizer` and keeping `stanfordnlp` just for tagging and parsing? I can only think...

I am seeing following exception when I use Tokenizer as shown below. If I close matcher part, no exception but no pos tagging this time. I have tried to find...

I am using Spacy in a pyspark dataframe in a UDF. Regular Spacy works fine, but with spacy-stanza I get a 'pickling error', which suggests to me that the library...

Fixes: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/setup-python@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. The test failures are unrelated. See explosion/spacy-stanza#102 for...

Tests are green with explosion/spacy-stanza#101. They fail because emoji 2.12.0 (a dependency of stanza) doesn't have a lower bound on typing-extensions (see carpedm20/emoji#297), but spacy has an upper bound (...

Python 3.6 reached its [EOL on 2021-12-23](https://peps.python.org/pep-0494/#lifespan) (~2.5 years ago) and Python 3.7 reached its [EOL on 2023-06-27](https://peps.python.org/pep-0537/#lifespan) (almost 1 year ago)

I have integrated most of the changes from #100, #101 and #102. The changes: - add support for newer stanza versions (up to

This pull request updates the `stanza` dependency constraint to support versions up to 1.9.x in both `requirements.txt` and `setup.py`.