Open hadooboo opened 5 years ago
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!
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?