python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Convert constituent string to Tree object (Stanza)
I am doing some experiments in Python with Stanza and I have converted a lot of sentences into ParseTree objects and saved them into a file like this:
# sent_id = Not relevant for the question
# text ...
MinionAttack
Votes: 0
Answers: 1
NLP POS tagging
I am working on a chatbot project using NLP. I am using spacy and I want to get pos of the tokens in sentence.
Currently I am using this code
en = spacy.load("en_core_web_md")
pos_sent = &qu...
YRR
Votes: 0
Answers: 1
Error while loading vector from Glove in Spacy
I am facing the following attribute error when loading glove model:
Code used to load model:
nlp = spacy.load('en_core_web_sm')
tokenizer = spacy.load('en_core_web_sm', disable=['tagger','parser', 'ne...
beta
Votes: 0
Answers: 2
Is Stanza stanza library very slow
I have two sets of codes to count the number of sentences in one text file. The two options generate different results and Option 2(Stanza) is very slow. Is Option 2(Stanza) more accurate? How should ...
Julie
Votes: 0
Answers: 1