Specifics on sentiment analysis
up vote
2
down vote
favorite
I am working on a bot that uses sentiment analysis to analyze questions from people in the health care insurance realm. One of the main things we do is connect people with care through a find care tool. The basic questions people ask are in the form "I need a new doctor" or "I need to see a dermatologist". When the sentiment is negative we want to pass the user on to customer service, but as we just discovered, any statement starting with "I need" is considered a negative statement by LUIS' built in sentiment analysis. This is a big problem for us!
If there is a way to tweak that, please someone let me know, though I don't hold out much hope. But I would like to understand - why was that decision made? Why is a simple "I need" question considered negative instead of neutral?
sentiment-analysis luis
add a comment |
up vote
2
down vote
favorite
I am working on a bot that uses sentiment analysis to analyze questions from people in the health care insurance realm. One of the main things we do is connect people with care through a find care tool. The basic questions people ask are in the form "I need a new doctor" or "I need to see a dermatologist". When the sentiment is negative we want to pass the user on to customer service, but as we just discovered, any statement starting with "I need" is considered a negative statement by LUIS' built in sentiment analysis. This is a big problem for us!
If there is a way to tweak that, please someone let me know, though I don't hold out much hope. But I would like to understand - why was that decision made? Why is a simple "I need" question considered negative instead of neutral?
sentiment-analysis luis
1
Please see my older question stackoverflow.com/questions/48428284/… Unfortunately the default sentiment detection in LUIS has the same base.
– Ferdinand Fejskid
Nov 8 at 11:42
thank you @FerdinandFejskid I will attempt to contact the machine learning team directly at the email in your answer and see if there is anything I can do. Btw, I did not find your original question when I searched, so thanks again.
– hengist
Nov 8 at 18:36
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am working on a bot that uses sentiment analysis to analyze questions from people in the health care insurance realm. One of the main things we do is connect people with care through a find care tool. The basic questions people ask are in the form "I need a new doctor" or "I need to see a dermatologist". When the sentiment is negative we want to pass the user on to customer service, but as we just discovered, any statement starting with "I need" is considered a negative statement by LUIS' built in sentiment analysis. This is a big problem for us!
If there is a way to tweak that, please someone let me know, though I don't hold out much hope. But I would like to understand - why was that decision made? Why is a simple "I need" question considered negative instead of neutral?
sentiment-analysis luis
I am working on a bot that uses sentiment analysis to analyze questions from people in the health care insurance realm. One of the main things we do is connect people with care through a find care tool. The basic questions people ask are in the form "I need a new doctor" or "I need to see a dermatologist". When the sentiment is negative we want to pass the user on to customer service, but as we just discovered, any statement starting with "I need" is considered a negative statement by LUIS' built in sentiment analysis. This is a big problem for us!
If there is a way to tweak that, please someone let me know, though I don't hold out much hope. But I would like to understand - why was that decision made? Why is a simple "I need" question considered negative instead of neutral?
sentiment-analysis luis
sentiment-analysis luis
edited Nov 7 at 22:54
asked Nov 7 at 22:31
hengist
3316
3316
1
Please see my older question stackoverflow.com/questions/48428284/… Unfortunately the default sentiment detection in LUIS has the same base.
– Ferdinand Fejskid
Nov 8 at 11:42
thank you @FerdinandFejskid I will attempt to contact the machine learning team directly at the email in your answer and see if there is anything I can do. Btw, I did not find your original question when I searched, so thanks again.
– hengist
Nov 8 at 18:36
add a comment |
1
Please see my older question stackoverflow.com/questions/48428284/… Unfortunately the default sentiment detection in LUIS has the same base.
– Ferdinand Fejskid
Nov 8 at 11:42
thank you @FerdinandFejskid I will attempt to contact the machine learning team directly at the email in your answer and see if there is anything I can do. Btw, I did not find your original question when I searched, so thanks again.
– hengist
Nov 8 at 18:36
1
1
Please see my older question stackoverflow.com/questions/48428284/… Unfortunately the default sentiment detection in LUIS has the same base.
– Ferdinand Fejskid
Nov 8 at 11:42
Please see my older question stackoverflow.com/questions/48428284/… Unfortunately the default sentiment detection in LUIS has the same base.
– Ferdinand Fejskid
Nov 8 at 11:42
thank you @FerdinandFejskid I will attempt to contact the machine learning team directly at the email in your answer and see if there is anything I can do. Btw, I did not find your original question when I searched, so thanks again.
– hengist
Nov 8 at 18:36
thank you @FerdinandFejskid I will attempt to contact the machine learning team directly at the email in your answer and see if there is anything I can do. Btw, I did not find your original question when I searched, so thanks again.
– hengist
Nov 8 at 18:36
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Sentiment analysis cannot be changed as LUIS relies on Microsoft's Text Analytics to produce a result. In addition to Ferdinand's comment suggestion, you could do one of the following, as well.
Suggest different utterances that produce a more positive result. Using 'find a doctor' produces a positive result where as 'I need a doctor' does not.
The Azure team has a ML learning lab repo that shows how to develop your own text analytics. It would require more effort but would offer you the ability to get the kind of sentiment analysis you are looking for.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Sentiment analysis cannot be changed as LUIS relies on Microsoft's Text Analytics to produce a result. In addition to Ferdinand's comment suggestion, you could do one of the following, as well.
Suggest different utterances that produce a more positive result. Using 'find a doctor' produces a positive result where as 'I need a doctor' does not.
The Azure team has a ML learning lab repo that shows how to develop your own text analytics. It would require more effort but would offer you the ability to get the kind of sentiment analysis you are looking for.
add a comment |
up vote
0
down vote
Sentiment analysis cannot be changed as LUIS relies on Microsoft's Text Analytics to produce a result. In addition to Ferdinand's comment suggestion, you could do one of the following, as well.
Suggest different utterances that produce a more positive result. Using 'find a doctor' produces a positive result where as 'I need a doctor' does not.
The Azure team has a ML learning lab repo that shows how to develop your own text analytics. It would require more effort but would offer you the ability to get the kind of sentiment analysis you are looking for.
add a comment |
up vote
0
down vote
up vote
0
down vote
Sentiment analysis cannot be changed as LUIS relies on Microsoft's Text Analytics to produce a result. In addition to Ferdinand's comment suggestion, you could do one of the following, as well.
Suggest different utterances that produce a more positive result. Using 'find a doctor' produces a positive result where as 'I need a doctor' does not.
The Azure team has a ML learning lab repo that shows how to develop your own text analytics. It would require more effort but would offer you the ability to get the kind of sentiment analysis you are looking for.
Sentiment analysis cannot be changed as LUIS relies on Microsoft's Text Analytics to produce a result. In addition to Ferdinand's comment suggestion, you could do one of the following, as well.
Suggest different utterances that produce a more positive result. Using 'find a doctor' produces a positive result where as 'I need a doctor' does not.
The Azure team has a ML learning lab repo that shows how to develop your own text analytics. It would require more effort but would offer you the ability to get the kind of sentiment analysis you are looking for.
answered Nov 8 at 18:51
Steven Kanberg
5191416
5191416
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53198891%2fspecifics-on-sentiment-analysis%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Please see my older question stackoverflow.com/questions/48428284/… Unfortunately the default sentiment detection in LUIS has the same base.
– Ferdinand Fejskid
Nov 8 at 11:42
thank you @FerdinandFejskid I will attempt to contact the machine learning team directly at the email in your answer and see if there is anything I can do. Btw, I did not find your original question when I searched, so thanks again.
– hengist
Nov 8 at 18:36