I have a list of several dozen product attributes that people are concerned with, like
- Financing
- Manufacturing quality
- Durability
- Sales experience
and several million free-text statements from customers about the product, e.g.
"The financing was easy but the housing is flimsy."
I would like to score each free text statement in terms of how strongly it relates to each of the attributes, and whether that is a positive or negative association.
In the given example, there would be a strong positive association to Financing and a strong negative association to Manufacturing quality.
It feels like this type of problem is probably the realm of Natural Language Programming (NLP). However, I spent several hours reading up on things like OpenNLP and NLTK and find there's so much domain specific terminology that I cannot figure out where to focus to solve this specific problem.
So my three-part question:
- Is NLP the correct route to solve this class of problem?
- What aspect of NLP should I focus on learning for this specific problem?
- Are there alternatives I have not considered?