Domain changed to archive.palanq.win . Feb 14-25 still awaits import.
[3 / 1 / 1]

Advice and recommendations for installing POS-taggers in Python

No.1517231 View ViewReplyOriginalReport
I'm trying to list words of a certain word class (adjectives, nouns etc.) and have managed to install nltk. However, some words are incorrectly sorted. Therefore I have tried downloading different stanford modules, but to no avail.
>https://gist.github.com/alvations/0ed8641d7d2e1941b9f9
I have tried this method but my computer is unable to install the parser (5d) because it cannot find the following model path
>edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz
The above path was retrieved from the following link which is referred to in the first link
>https://gist.github.com/alvations/e1df0ba227e542955a8a
Even if the parser is redundant, I cannot seem to call on the POS.

I have also tried installing StanfordNLP and StanfordPOSTagger (which I realize is the same thing as above) while relying on instructions from chatgpt. but again to no avail. I am able to import the StanfordNLP, however when running the script I receive the following exception at nlp = stanfordnlp.Pipeline()
>Vector file not being provided
I have also tried downloading the English models from the following website, but they do not seem to function correctly
>https://stanfordnlp.github.io/stanfordnlp/models.html
Finally, I am unable to install the StanfordPOSTagger with pip and receive the following error messages
>ERROR: Could not find a version that satisfies the requirement stanford-postagger (from versions: none)
>ERROR: No matching distribution found for stanford-postagger

Any ideas about what to do?