We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Textblob : https://textblob.readthedocs.io/en/dev/
Spacy : https://spacy.io/
I'm thinking of a way to tagging before implementing recommendation. @ByungHeeCha has found 2 and I've found 1. I think of using 1 to analyze sentiment in sentence unit(https://textblob.readthedocs.io/en/dev/quickstart.html#tokenization) and using 2 to filter adjectives.(https://spacy.io/usage/linguistic-features#pos-tagging) In this way, we can find adjectives in comment and feelings on them. We can just show adjectives or nouns corresponding that adjectives.
How about?
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
I chose 1 and 2 as they are python codes! However 3 seems to use java.. isn't it?
#!pip install pycorenlp from pycorenlp import StanfordCoreNLP
They support python too!
Let's make a simple model using these 3 NLP api and find the best one!
hadooboo
ByungHeeCha
No branches or pull requests
Textblob : https://textblob.readthedocs.io/en/dev/
Spacy : https://spacy.io/
I'm thinking of a way to tagging before implementing recommendation. @ByungHeeCha has found 2 and I've found 1. I think of using 1 to analyze sentiment in sentence unit(https://textblob.readthedocs.io/en/dev/quickstart.html#tokenization) and using 2 to filter adjectives.(https://spacy.io/usage/linguistic-features#pos-tagging) In this way, we can find adjectives in comment and feelings on them.
We can just show adjectives or nouns corresponding that adjectives.
How about?
The text was updated successfully, but these errors were encountered: