The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Is it possible to do Sentiment Analysis and rate each commet with scaled values
Hello to all RapidMiner Experts,
My name is Lum Zhaveli, I am currently at third year of my studies at The University of Sheffield International Faculty, CITY College, in Thessaloniki. My dissertation has to do with Sentiment Analysis.
I have to integrate Sentiment Analysis Engine into a system called Effectinet developed by a student at our college. Effectinet is a system that allows students to answer two types of questions anonymously that lecture asks them online during the lecture (most of the questions should be related to how students feel and how much they have problems understanding the lecture).
The first form of answering questions is the fixed form that will use sliders and selecting an answer that the lecturer has posted.
The second form is, the student will use natural language (NL) to express his opinion for that question.
By this we believe that we can help lecturer to adjust the phase that is giving lecture and the way that he is explaining things in order to increase the lecture quality.
My questions are the following (I’m sorry I should have done a bit more research before asking but I just saw your videos on YouTube and today is my Birthday):
1. Can Rapid Miner rate opinions with scales (from 1 to 5) not just with polarity?
2. I will be using a DB to store the results. Can I store the result for each NL answer in the DB and the result will correspond only to that particular answers( I don’t need to group the results because that will be calculated by the system after)?
2a.Lets say that i have:
This lecture is Great. (you give positive rating or a certain scale)
This lecture is useless for advanced students like me. (you give negative rating or a certain scale)
3. Can I use rapid miner to do analysis on real time (as soon as a new answer is received by the server to process it and rate it)?
4. I have used GATE a bit but Rapid Miner seems better but i am still confused with all the tools and other things around me, because i don't have the necessary support from my mentors at Collage.
Thanks in advance.
Lum Zhaveli
My name is Lum Zhaveli, I am currently at third year of my studies at The University of Sheffield International Faculty, CITY College, in Thessaloniki. My dissertation has to do with Sentiment Analysis.
I have to integrate Sentiment Analysis Engine into a system called Effectinet developed by a student at our college. Effectinet is a system that allows students to answer two types of questions anonymously that lecture asks them online during the lecture (most of the questions should be related to how students feel and how much they have problems understanding the lecture).
The first form of answering questions is the fixed form that will use sliders and selecting an answer that the lecturer has posted.
The second form is, the student will use natural language (NL) to express his opinion for that question.
By this we believe that we can help lecturer to adjust the phase that is giving lecture and the way that he is explaining things in order to increase the lecture quality.
My questions are the following (I’m sorry I should have done a bit more research before asking but I just saw your videos on YouTube and today is my Birthday):
1. Can Rapid Miner rate opinions with scales (from 1 to 5) not just with polarity?
2. I will be using a DB to store the results. Can I store the result for each NL answer in the DB and the result will correspond only to that particular answers( I don’t need to group the results because that will be calculated by the system after)?
2a.Lets say that i have:
This lecture is Great. (you give positive rating or a certain scale)
This lecture is useless for advanced students like me. (you give negative rating or a certain scale)
3. Can I use rapid miner to do analysis on real time (as soon as a new answer is received by the server to process it and rate it)?
4. I have used GATE a bit but Rapid Miner seems better but i am still confused with all the tools and other things around me, because i don't have the necessary support from my mentors at Collage.
Thanks in advance.
Lum Zhaveli
0
Answers
first of all: happy birthday! I hope you had a great day
Let's have a look at your questions:
1. Most learners will not output only a binary decision like positive/negative, but also confidences. You could try to map confidence intervals to different scales.
2. I don't understand this question completely, so let me just say that RapidMiner has both a Write Database operator to append data to new or existing database tables, and an Update Database operator, which performs writes similiar to the UPDATE statement of SQL.
3. Once you created good processes and models, it is possible to deploy them to a RapidAnalytics server, which allows to do classifications/ratings via a webservice. Please keep in mind that there are certain legal restrictions due to the AGPL license - in general, the code on the server that queries the webservice must also be released under the AGPL. You could also call RapidMiner via the command line, but that tends to be slow, and you also have to consider legal issues if you integrate our software into your own systems.
4. What should I say, of course our products are always a good choice
Best regards and happy analysing,
Marius
Thanks for the respond, it clarified a lot of things that I was not understanding well. I will describe in more detail (including some technical details) questions 2. I read some new things also I checked something about confidences but I still need to read more and to understand theory better and how to implement them.
The database will be used to hold the feedback that will be send from student in Natural Language (NL) and it will hold also the value (rating) when the NL feedback is processed. The row that will hold NL feedback is limited to 300 characters and the row that will hold the result will be an integer.
After the NL feedback is processed the result of analysis for that particular feedback will be stored at value. At the table below I have given an example that I hope it will make it cleaner.
If there is no way to have values with scales from 1-5 what is the suggestion to do in this situation.
EDIT: Wanted to show what i have done so far to give a picture of how much i know at this point.
The only thing i can make it work so far is retrieve data from the DB and count word occurrence. As for sentiment analysis i have this non working solution. Still looking at tutorials and reading other peoples blogs it not enough for now. Hope soon i will be able to work and understand better Rapid-i Products.
Thanks for the help ;D