Modelle installieren: python3 -m spacy download en (oder statt en andere Sprachen)
nutzen:
import textacy
doc = textacy.Doc(text)
doc.pos_tagged_text[0]
etc. Mehr Doku ist oben verlinkt.
quick-nlp
https://github.com/outcastofmusic/quick-nlp
Beschreibung von der Website:
Quick NLP is a deep learning nlp library inspired by the fast.ai library
Can run a seq2seq model with a few lines of code similar to existing fast.ai examples
Easy to expand/train and try different models or use different data
Ready made algorithms to try out