Skip to content
New issue

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

[backend] Recommendation feature #37

Open
hadooboo opened this issue Nov 5, 2019 · 4 comments
Open

[backend] Recommendation feature #37

hadooboo opened this issue Nov 5, 2019 · 4 comments
Assignees
Labels
backend implementation of backend enhancement New feature or request

Comments

@hadooboo
Copy link
Contributor

hadooboo commented Nov 5, 2019

  1. Textblob : https://textblob.readthedocs.io/en/dev/

  2. 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?

@hadooboo hadooboo added backend implementation of backend enhancement New feature or request labels Nov 5, 2019
@ByungHeeCha
Copy link
Contributor

ByungHeeCha commented Nov 5, 2019

  1. Stanford Core NLP: https://nlp.stanford.edu/sentiment/index.html
    This is pretty great too!

@hadooboo
Copy link
Contributor Author

hadooboo commented Nov 5, 2019

I chose 1 and 2 as they are python codes! However 3 seems to use java.. isn't it?

@ByungHeeCha
Copy link
Contributor

#!pip install pycorenlp
from pycorenlp import StanfordCoreNLP

They support python too!

@ByungHeeCha
Copy link
Contributor

Let's make a simple model using these 3 NLP api and find the best one!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backend implementation of backend enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants