stanza
stanza copied to clipboard
Stanford NLP Python library for tokenization, sentence segmentation, NER, and parsing of many human languages
**Is your feature request related to a problem? Please describe.** The way that CoreNLP server is encapsulated using a subprocess is really nice. I want to be able to use...
**Describe the bug** http://stanza.run/ Website crashes. I need it,Please fix it.Thank you very much.
With the default pipeline, "can" is tagged as a modal verb (MD) but it should be a noun (NN) in the following examples: - "trash can" - "soda can" -...
The Russian text is not broken down into sentences. Help me to solve this problem ## test code text = "Это первое предложение. Это тестовая строка. Почему бы не написать...
* corenlp version: 4.2.0 * chinese model * `annotators` used: 'tokenize', 'ssplit', 'pos', 'lemma', 'ner', 'parse', 'depparse', 'coref' ```py client = CoreNLPClient(annotators=annotators, ...) ann = client.annotate(ANY_SENTENCE) ann.text # same as...
Hi, I met a problem when doing lemmatization. When lemmatizing "**Mary fries some French fries**", the verb "fries" was wrongly lemmatized as "fries", which is the lemma of the noun...
How can we add the abkhazian language? There are a few resources like https://gitlab.com/Bachstelze/alp and https://github.com/danielinux7/Multilingual-Parallel-Corpus . Can we port those models to stanza or do we have to retrain...
[Python 3's Type Hints](https://docs.python.org/3/library/typing.html) seem very helpful for reading the source code and it is used in projects like [AllenNLP](https://github.com/allenai/allennlp) and [Flair](https://github.com/zalandoresearch/flair). Do you plan to use it in the...
Is Swahili a language you're working on? Based on the requests for other languages, it sounds like the first step is to create a Universal Dependencies description. Kenneth Steimel (@ksteimel)...
Within our study environment , we cannot pull in models from github without enabling SSL_VERIFY=false. Because of this reason we are forced to download the models outside the notebook using...