SlideShare a Scribd company logo
1 of 3
Download to read offline
Prajakta Patil et al. Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.78-80
www.ijera.com 78 | P a g e
Social Sensor for Real Time Event Detection
Prajakta Patil1
, Pooja Patil2
, Amruta Salvi3
, Prof. Mrunmayee Hatiskar4
Department Of Computer Engineering1, 2, 3, 4
RMCET (Mumbai University) Ambav, Devrukh, India1, 2, 3, 4
ABSTRACT
Social sites play an important role in our day to day life. Peoples are spending at most of the time on social
networking sites and for this reason social networking sites have received a more attention in last few years.
Social networking websites have received greater attention in the past few years .Twitter is one of the most
popular networking site which received attention from peoples by providing its real time nature. The important
characteristic of our system is its real-time nature. We create a system to collects the tweets from various groups
of users and detect real time events like earthquake, traffic etc. To detect real time events, we build a classifier
of comments based on features such as the keywords in a comments, the number of words. With the help of
comments we will approximately find out the location of the target event. We assume each user as a sensor and
apply priority base algorithm which is used for tweet analysis.
To resolve the traffic congestion problem, we have to consider the volume of the traffic, traffic speed, road
occupancy etc. Classify tweets into a positive and negative class. Produce a probabilistic model for event
detection. We create group of users on the basis of their interest such as peoples from traffic police department
are post the tweets related to traffic event, also peoples form whether department are post their tweets related to
flood etc. Each tweet is associated with user group, tweet, time and location. By processing time and location
information, we can detect the real time events.
Keywords: Classifier, microblogging, feature
I. INTRODUCTION
Twitter is a popular social networking site
providing microblogging service where users post
tweets. These tweets may tells an opinion about
topics, feelings etc. We propose a method to
automatically extract features from a tweet. .In order
to train a classifier, supervised learning usually
requires hand-labeled training data. With the large
range of topics discussed on Twitter, it would be very
difficult to manually collect enough data to train a
sentiment classifier for tweets. Our solution is to use
priority algorithm, in which our training data consists
of tweets with emoticons.
The emoticons serve as noisy labels in a tweet.
With the help of the our system API, it is easy to
extract large amounts of tweets with emoticons in
them
We present the results of our experiments and
our thoughts on how to further improve results.
1.1. Defining Sentiment.
For the purposes of our project, we define
sentiment to be a personal positive or negative
feeling.
1.2. Characteristics of Tweets.
Twitter messages have many unique attributes,
which differentiates our research from previous
research:
Length: The maximum length of the message is 70
characters. From our training set, we calculate that
the average length of a tweet is 8 words or 38
characters. With the help of our platform, it is very
easy to collect millions of tweets for training
II. APPROACH
Our approach is to use one machine learning
classifier and feature extractor, which is Priority
based message stack queuing. We build a framework
that treats classifiers and feature extractors as two
distinct components.
2.1. Emotions.
Since the training process makes use of
emoticons as noisy labels, it is crucial to discuss the
role they play in classification. We will discuss in
detail our training and test set in the Evaluation
section. We strip the emotions out from our training
data. Stripping out the emoticons causes the classifier
to learn from the other features (e.g. unigrams and
bigrams) present in the tweet. The classifier uses
these non-emoticon features to determine the
sentiment.
III. ALGORITHMS
We use Priority based message stack queuing
algorithm for our project. We take advantage of the
following properties to reduce the feature space.
RESEARCH ARTICLE OPEN ACCESS
Prajakta Patil et al. Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.78-80
www.ijera.com 79 | P a g e
Usernames Users often include usernames in their
tweets in order to direct their messages..
3.1. Priority based message stack queuing:
Message Queuing is useful when the client
application is often disconnected from the network.
In our case the tweets can be send according to
priority stack checking the date of telecast and the
nature of message to be unique.
A message can have a priority that defines the
order in which the message will be read from a
queue.
In C#, we can also create Message Queues
programmatically using the Create() method of
MessageQueue class. With Create() method, the path
of the new queue must be passed.
Example:
using System;
using System.Messaging; namespace FirstQueue
{
class Program
{
static void Main(string[] args)
{
try
{
if (!MessageQueue.
Exists(@".Private$FirstQueue"))
{
MessageQueue.Create (@".Private$FirstQueue");
}
MessageQueue queue = new
MessageQueue (@".Private$FirstQueue");
queue.Send ("First Message ", " Label ");
}
Catch (MessageQueueException ex)
{
Console.WriteLine (ex.Message);
}
}
}
IV. EVALUATION
4.1 Experimental Set-up.
We create a real time system blogging that
includes following modules:
Figure 1. Modules
4.1.1 The Broadcast group.
The broadcast group is actually the registered
people who operate as groups for casting the news
from any part of the world and this news queue is
streamed to the admin.
4.1.2 Admin Module.
Admin filters the news casts, check credibility
and implement the priority queuing algorithm and
telecasts to the users.
The tweets will be real time. So new updates are
display timely.
Old news is given a time frame of display and is
pulled off after it becomes outdated or irrelevant.
4.1.3 Users.
The users are the social media network users
who can view and comment on the site. Users can
send the real time trendy tweets.
And the users can benefit with current alerts and the
location in case if it is concern.
V. FUTURE-WORK
In tweets machine learning techniques works
well for classifying sentiment. We believe that the
accuracy could still be improved. Below is a list of
ideas we think could help in this direction.
Internationalization: We focus only on English
sentences, but Twitter has many international users. It
should be possible to use our approach to classify
sentiment in other languages [1].
Utilizing emoticon data in the test set: From our
training data emoticons are stripped. This means that
if our test data contains an emoticon feature, this does
not influence the classifier towards a class. This
should be addressed because the emoticon features
are very valuable [1].
VI. RELATED WORK
We consider each registered user as a sensor and
apply particle filtering which are namely used for
estimation of location. The working of particle filter
is better than other comparable methods for locations
estimation of target events. Each tweet has its own
post Time so in a temporal model we show when
target event occurs. How many tweets which are
similar are posted on our platform depending on that
target event behaviour can be analyzed. In spatial
model, each tweet also has itโ€™s a location (from
where tweets was posted) and by using โ€œparticle
filterโ€, can locate the targeted events from using
tweets. Our work is on detection of real time events
like earthquakes using tweets. Some researchers
examined the twitter and they found out that it is one
of the microblogging service. Real time nature an
important characteristic of micro blogging service. So
for our research twitter has been considered, to detect
Prajakta Patil et al. Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.78-80
www.ijera.com 80 | P a g e
the real time event depending on the tweets posted.
For example using twitter people make comment on
various topics and real time events. In the real time
the tweet analysis also helps to know the important
topics on which people are focusing.
Figure 2. Proposed system
VII. CONCLUSION
Peoples need to be get notifications of disaster
events in short time and Twitter is one of the most
popular networking site which received attention
from peoples by providing its real time nature. So We
are creating a system to collects the tweets from
various group of users and detect real time events like
earthquake, traffic etc. by using Priority based
message stack queuing algorithm and Classify tweets
into a positive and negative class. So it will produce a
probabilistic model for event detection.
REFERENCES
[1] โ€œTwitter sentiment classification
using distant supervisionโ€ by Alec Go,
Richa Bhayani, Lei Huang.
[2] D. O. Computer, C. Wei Hsu, C. Chung
Chang, and C. jen Lin. A practical guide to
support vector classification chih-wei hsu,
chih-chung chang, and chih-jen lin.
Technical report, 2003.
[3] N. Cristianini and J. Shawe-Taylor. An
Introduction to Support Vector Machines
and Other Kernel-based Learning Methods.
Cambridge University Press, March 2000.
[4] B. J. Jansen, M. Zhang, K. Sobel, and A.
Chowder. Micro-blogging as online word of
mouth branding. In CHI EA '09:
Proceedings of the 27th international
conference extended abstracts on Human
factors in computing systems, pages
3859{3864, New York, NY, USA, 2009.
ACM.
[5] T. Joachims. Making large-scale support
vector machine learning practical. In B.
SchAolkopf, C. J. C. Burges, and A. J.
Smola, editors, Advances in kernel methods:
support vector learning, pages 169{184.
MIT Press, Cambridge, MA, USA, 1999.
[6] C. D. Manning and H. Schutze. Foundations
of statistical natural language processing.
MIT Press,1999.
[7] G. Mishne. Experiments with mood
classification in blog posts. In 1st Workshop
on Stylistic Analysis of Text for Information
Access, 2005.
[8] K. Nigam, J. Laberty, and A. McCollum.
Using Maximum entropy for text
classification. In IJCAI-99 Workshop on
Machine Learning for Information Filtering,
pages 61{67, 1999.
[9] B. Pang and L. Lee. Opinion mining and
sentiment analysis. Foundations and Trends
in Information Retrieval, 2(1-2):1{135,
2008.
[10] B. Pang, L. Lee, and S. Vaithyanathan.
Thumbs up? Sentiment classification using
machine learning techniques. In
Proceedings of the Conference on Empirical
Methods in Natural Language Processing
(EMNLP), pages 79{86, 2002.
[11] J. Read. Using emoticons to reduce
dependency in machine learning techniques
for sentiment classification. In Proceedings
of ACL-05, 43nd Meeting of the Association
for Computational Linguistics. Association
for Computational Linguistics, 2005.

More Related Content

Viewers also liked

kelompok 4 XII IPS A Perubahan Sosial
kelompok 4 XII IPS A Perubahan Sosialkelompok 4 XII IPS A Perubahan Sosial
kelompok 4 XII IPS A Perubahan Sosial
hadriannormubaraq
ย 
Vรฌ sao bแบกn dแป… chรณng mแบทt, buแป“n nรดn, xรขy xแบฉm
Vรฌ sao bแบกn dแป… chรณng mแบทt, buแป“n nรดn, xรขy xแบฉmVรฌ sao bแบกn dแป… chรณng mแบทt, buแป“n nรดn, xรขy xแบฉm
Vรฌ sao bแบกn dแป… chรณng mแบทt, buแป“n nรดn, xรขy xแบฉm
inga825
ย 
sunyards
sunyardssunyards
sunyards
Coey Kwan
ย 
่‡บ็ฃ้ซ˜็ญ‰ๆณ•้™ข ๅˆ‘-102ไธŠ่จด1764
่‡บ็ฃ้ซ˜็ญ‰ๆณ•้™ข ๅˆ‘-102ไธŠ่จด1764่‡บ็ฃ้ซ˜็ญ‰ๆณ•้™ข ๅˆ‘-102ไธŠ่จด1764
่‡บ็ฃ้ซ˜็ญ‰ๆณ•้™ข ๅˆ‘-102ไธŠ่จด1764
Chung-Yen Imasfb
ย 
ัั€ะฟัะบะฐ ะผะพะดะตั€ะฝะฐ
ัั€ะฟัะบะฐ ะผะพะดะตั€ะฝะฐัั€ะฟัะบะฐ ะผะพะดะตั€ะฝะฐ
ัั€ะฟัะบะฐ ะผะพะดะตั€ะฝะฐ
Zorica Ivanovic
ย 
Ergonomija u poljoprivredi prvi deo
Ergonomija u poljoprivredi  prvi deoErgonomija u poljoprivredi  prvi deo
Ergonomija u poljoprivredi prvi deo
instituttam
ย 
ะšะฐะบ ั€ะฐะทะฒะธะฒะฐั‚ัŒ ะฒะฝัƒั‚ั€ะตะฝะฝะธะธฬ† ั‚ัƒั€ะธะทะผ ะธัะฟะพะปัŒะทัƒั ั€ะตััƒั€ั 50+?
ะšะฐะบ ั€ะฐะทะฒะธะฒะฐั‚ัŒ ะฒะฝัƒั‚ั€ะตะฝะฝะธะธฬ† ั‚ัƒั€ะธะทะผ ะธัะฟะพะปัŒะทัƒั ั€ะตััƒั€ั 50+?ะšะฐะบ ั€ะฐะทะฒะธะฒะฐั‚ัŒ ะฒะฝัƒั‚ั€ะตะฝะฝะธะธฬ† ั‚ัƒั€ะธะทะผ ะธัะฟะพะปัŒะทัƒั ั€ะตััƒั€ั 50+?
ะšะฐะบ ั€ะฐะทะฒะธะฒะฐั‚ัŒ ะฒะฝัƒั‚ั€ะตะฝะฝะธะธฬ† ั‚ัƒั€ะธะทะผ ะธัะฟะพะปัŒะทัƒั ั€ะตััƒั€ั 50+?
ะ‘ะฐะฑะฐะ”ะตะดะฐ
ย 

Viewers also liked (14)

kelompok 4 XII IPS A Perubahan Sosial
kelompok 4 XII IPS A Perubahan Sosialkelompok 4 XII IPS A Perubahan Sosial
kelompok 4 XII IPS A Perubahan Sosial
ย 
Olymsearch Mini Brochure (For Investers)
Olymsearch Mini Brochure (For Investers)Olymsearch Mini Brochure (For Investers)
Olymsearch Mini Brochure (For Investers)
ย 
แ„ƒแ…ตแ„‡แ…ฅแ„€แ…ฅ แ„‰แ…ฉแ„€แ…ข
แ„ƒแ…ตแ„‡แ…ฅแ„€แ…ฅ แ„‰แ…ฉแ„€แ…ขแ„ƒแ…ตแ„‡แ…ฅแ„€แ…ฅ แ„‰แ…ฉแ„€แ…ข
แ„ƒแ…ตแ„‡แ…ฅแ„€แ…ฅ แ„‰แ…ฉแ„€แ…ข
ย 
Vรฌ sao bแบกn dแป… chรณng mแบทt, buแป“n nรดn, xรขy xแบฉm
Vรฌ sao bแบกn dแป… chรณng mแบทt, buแป“n nรดn, xรขy xแบฉmVรฌ sao bแบกn dแป… chรณng mแบทt, buแป“n nรดn, xรขy xแบฉm
Vรฌ sao bแบกn dแป… chรณng mแบทt, buแป“n nรดn, xรขy xแบฉm
ย 
SELAMATKAN INDONESIA DARI BAHAYA NEOLIBERALISME DAN NEOIMPERIALISME
SELAMATKAN INDONESIA DARI BAHAYA NEOLIBERALISME DAN NEOIMPERIALISMESELAMATKAN INDONESIA DARI BAHAYA NEOLIBERALISME DAN NEOIMPERIALISME
SELAMATKAN INDONESIA DARI BAHAYA NEOLIBERALISME DAN NEOIMPERIALISME
ย 
sunyards
sunyardssunyards
sunyards
ย 
่‡บ็ฃ้ซ˜็ญ‰ๆณ•้™ข ๅˆ‘-102ไธŠ่จด1764
่‡บ็ฃ้ซ˜็ญ‰ๆณ•้™ข ๅˆ‘-102ไธŠ่จด1764่‡บ็ฃ้ซ˜็ญ‰ๆณ•้™ข ๅˆ‘-102ไธŠ่จด1764
่‡บ็ฃ้ซ˜็ญ‰ๆณ•้™ข ๅˆ‘-102ไธŠ่จด1764
ย 
ัั€ะฟัะบะฐ ะผะพะดะตั€ะฝะฐ
ัั€ะฟัะบะฐ ะผะพะดะตั€ะฝะฐัั€ะฟัะบะฐ ะผะพะดะตั€ะฝะฐ
ัั€ะฟัะบะฐ ะผะพะดะตั€ะฝะฐ
ย 
Natalie Pang and Qinfeng Zhu: How YouTubers saw The Little India Riot
Natalie Pang and Qinfeng Zhu: How YouTubers saw The Little India RiotNatalie Pang and Qinfeng Zhu: How YouTubers saw The Little India Riot
Natalie Pang and Qinfeng Zhu: How YouTubers saw The Little India Riot
ย 
Ergonomija u poljoprivredi prvi deo
Ergonomija u poljoprivredi  prvi deoErgonomija u poljoprivredi  prvi deo
Ergonomija u poljoprivredi prvi deo
ย 
ะทะตะปะตะฝะพะณะพั€ัะบะธะน ะดะตั‚ัะบะธะน ัะฐะด โ„–3 ยซะผะธัˆัƒั‚ะบะฐยป
ะทะตะปะตะฝะพะณะพั€ัะบะธะน ะดะตั‚ัะบะธะน ัะฐะด โ„–3 ยซะผะธัˆัƒั‚ะบะฐยปะทะตะปะตะฝะพะณะพั€ัะบะธะน ะดะตั‚ัะบะธะน ัะฐะด โ„–3 ยซะผะธัˆัƒั‚ะบะฐยป
ะทะตะปะตะฝะพะณะพั€ัะบะธะน ะดะตั‚ัะบะธะน ัะฐะด โ„–3 ยซะผะธัˆัƒั‚ะบะฐยป
ย 
How to access ms can bus using for scan v2 and modified elm327
How to access ms can bus using for scan v2 and modified elm327How to access ms can bus using for scan v2 and modified elm327
How to access ms can bus using for scan v2 and modified elm327
ย 
ๅฆ‚ไฝ•็”จๅฐ‘ๅฐ‘็š„้Œข๏ผŒ่ฒทๅˆฐๆฏ”ๆ—…ๅนณ้šชๆ›ดๅฅฝ็š„ไฟ้šœ๏ผŸ
ๅฆ‚ไฝ•็”จๅฐ‘ๅฐ‘็š„้Œข๏ผŒ่ฒทๅˆฐๆฏ”ๆ—…ๅนณ้šชๆ›ดๅฅฝ็š„ไฟ้šœ๏ผŸๅฆ‚ไฝ•็”จๅฐ‘ๅฐ‘็š„้Œข๏ผŒ่ฒทๅˆฐๆฏ”ๆ—…ๅนณ้šชๆ›ดๅฅฝ็š„ไฟ้šœ๏ผŸ
ๅฆ‚ไฝ•็”จๅฐ‘ๅฐ‘็š„้Œข๏ผŒ่ฒทๅˆฐๆฏ”ๆ—…ๅนณ้šชๆ›ดๅฅฝ็š„ไฟ้šœ๏ผŸ
ย 
ะšะฐะบ ั€ะฐะทะฒะธะฒะฐั‚ัŒ ะฒะฝัƒั‚ั€ะตะฝะฝะธะธฬ† ั‚ัƒั€ะธะทะผ ะธัะฟะพะปัŒะทัƒั ั€ะตััƒั€ั 50+?
ะšะฐะบ ั€ะฐะทะฒะธะฒะฐั‚ัŒ ะฒะฝัƒั‚ั€ะตะฝะฝะธะธฬ† ั‚ัƒั€ะธะทะผ ะธัะฟะพะปัŒะทัƒั ั€ะตััƒั€ั 50+?ะšะฐะบ ั€ะฐะทะฒะธะฒะฐั‚ัŒ ะฒะฝัƒั‚ั€ะตะฝะฝะธะธฬ† ั‚ัƒั€ะธะทะผ ะธัะฟะพะปัŒะทัƒั ั€ะตััƒั€ั 50+?
ะšะฐะบ ั€ะฐะทะฒะธะฒะฐั‚ัŒ ะฒะฝัƒั‚ั€ะตะฝะฝะธะธฬ† ั‚ัƒั€ะธะทะผ ะธัะฟะพะปัŒะทัƒั ั€ะตััƒั€ั 50+?
ย 

Similar to Social Sensor for Real Time Event Detection

[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
IJET - International Journal of Engineering and Techniques
ย 

Similar to Social Sensor for Real Time Event Detection (20)

IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag
 IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag
IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag
ย 
IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...
IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...
IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...
ย 
A Paper on Web Data Segmentation for Terrorism Detection using Named Entity R...
A Paper on Web Data Segmentation for Terrorism Detection using Named Entity R...A Paper on Web Data Segmentation for Terrorism Detection using Named Entity R...
A Paper on Web Data Segmentation for Terrorism Detection using Named Entity R...
ย 
AGGRESSION DETECTION USING MACHINE LEARNING MODEL
AGGRESSION DETECTION USING MACHINE LEARNING MODELAGGRESSION DETECTION USING MACHINE LEARNING MODEL
AGGRESSION DETECTION USING MACHINE LEARNING MODEL
ย 
Sentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine LearningSentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine Learning
ย 
Tweet analysis for real time event detection and earthquake reporting system ...
Tweet analysis for real time event detection and earthquake reporting system ...Tweet analysis for real time event detection and earthquake reporting system ...
Tweet analysis for real time event detection and earthquake reporting system ...
ย 
IRJET- Improved Real-Time Twitter Sentiment Analysis using ML & Word2Vec
IRJET-  	  Improved Real-Time Twitter Sentiment Analysis using ML & Word2VecIRJET-  	  Improved Real-Time Twitter Sentiment Analysis using ML & Word2Vec
IRJET- Improved Real-Time Twitter Sentiment Analysis using ML & Word2Vec
ย 
Classification Methods for Spam Detection in Online Social Network
Classification Methods for Spam Detection in Online Social NetworkClassification Methods for Spam Detection in Online Social Network
Classification Methods for Spam Detection in Online Social Network
ย 
Detection and Analysis of Twitter Trending Topics via Link-Anomaly Detection
Detection and Analysis of Twitter Trending Topics via Link-Anomaly DetectionDetection and Analysis of Twitter Trending Topics via Link-Anomaly Detection
Detection and Analysis of Twitter Trending Topics via Link-Anomaly Detection
ย 
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...
ย 
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
ย 
F017433947
F017433947F017433947
F017433947
ย 
IRJET- An Effective Analysis of Anti Troll System using Artificial Intell...
IRJET-  	  An Effective Analysis of Anti Troll System using Artificial Intell...IRJET-  	  An Effective Analysis of Anti Troll System using Artificial Intell...
IRJET- An Effective Analysis of Anti Troll System using Artificial Intell...
ย 
Python report on twitter sentiment analysis
Python report on twitter sentiment analysisPython report on twitter sentiment analysis
Python report on twitter sentiment analysis
ย 
DP1_160430723010_Divya.pptx
DP1_160430723010_Divya.pptxDP1_160430723010_Divya.pptx
DP1_160430723010_Divya.pptx
ย 
Categorize balanced dataset for troll detection
Categorize balanced dataset for troll detectionCategorize balanced dataset for troll detection
Categorize balanced dataset for troll detection
ย 
Tweet Summarization and Segmentation: A Survey
Tweet Summarization and Segmentation: A SurveyTweet Summarization and Segmentation: A Survey
Tweet Summarization and Segmentation: A Survey
ย 
DETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORK
DETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORKDETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORK
DETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORK
ย 
IRJET- Sentiment Analysis of Twitter Data using Python
IRJET-  	  Sentiment Analysis of Twitter Data using PythonIRJET-  	  Sentiment Analysis of Twitter Data using Python
IRJET- Sentiment Analysis of Twitter Data using Python
ย 
IRJET - Twitter Sentimental Analysis
IRJET -  	  Twitter Sentimental AnalysisIRJET -  	  Twitter Sentimental Analysis
IRJET - Twitter Sentimental Analysis
ย 

Recently uploaded

Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
SUHANI PANDEY
ย 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
ย 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
ย 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Kandungan 087776558899
ย 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
sivaprakash250
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 

Recently uploaded (20)

Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
ย 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
ย 
Top Rated Pune Call Girls Budhwar Peth โŸŸ 6297143586 โŸŸ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth โŸŸ 6297143586 โŸŸ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth โŸŸ 6297143586 โŸŸ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth โŸŸ 6297143586 โŸŸ Call Me For Genuine Se...
ย 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
ย 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
ย 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
ย 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
ย 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
ย 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
ย 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
ย 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
ย 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
ย 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
ย 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
ย 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
ย 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
ย 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
ย 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
ย 

Social Sensor for Real Time Event Detection

  • 1. Prajakta Patil et al. Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.78-80 www.ijera.com 78 | P a g e Social Sensor for Real Time Event Detection Prajakta Patil1 , Pooja Patil2 , Amruta Salvi3 , Prof. Mrunmayee Hatiskar4 Department Of Computer Engineering1, 2, 3, 4 RMCET (Mumbai University) Ambav, Devrukh, India1, 2, 3, 4 ABSTRACT Social sites play an important role in our day to day life. Peoples are spending at most of the time on social networking sites and for this reason social networking sites have received a more attention in last few years. Social networking websites have received greater attention in the past few years .Twitter is one of the most popular networking site which received attention from peoples by providing its real time nature. The important characteristic of our system is its real-time nature. We create a system to collects the tweets from various groups of users and detect real time events like earthquake, traffic etc. To detect real time events, we build a classifier of comments based on features such as the keywords in a comments, the number of words. With the help of comments we will approximately find out the location of the target event. We assume each user as a sensor and apply priority base algorithm which is used for tweet analysis. To resolve the traffic congestion problem, we have to consider the volume of the traffic, traffic speed, road occupancy etc. Classify tweets into a positive and negative class. Produce a probabilistic model for event detection. We create group of users on the basis of their interest such as peoples from traffic police department are post the tweets related to traffic event, also peoples form whether department are post their tweets related to flood etc. Each tweet is associated with user group, tweet, time and location. By processing time and location information, we can detect the real time events. Keywords: Classifier, microblogging, feature I. INTRODUCTION Twitter is a popular social networking site providing microblogging service where users post tweets. These tweets may tells an opinion about topics, feelings etc. We propose a method to automatically extract features from a tweet. .In order to train a classifier, supervised learning usually requires hand-labeled training data. With the large range of topics discussed on Twitter, it would be very difficult to manually collect enough data to train a sentiment classifier for tweets. Our solution is to use priority algorithm, in which our training data consists of tweets with emoticons. The emoticons serve as noisy labels in a tweet. With the help of the our system API, it is easy to extract large amounts of tweets with emoticons in them We present the results of our experiments and our thoughts on how to further improve results. 1.1. Defining Sentiment. For the purposes of our project, we define sentiment to be a personal positive or negative feeling. 1.2. Characteristics of Tweets. Twitter messages have many unique attributes, which differentiates our research from previous research: Length: The maximum length of the message is 70 characters. From our training set, we calculate that the average length of a tweet is 8 words or 38 characters. With the help of our platform, it is very easy to collect millions of tweets for training II. APPROACH Our approach is to use one machine learning classifier and feature extractor, which is Priority based message stack queuing. We build a framework that treats classifiers and feature extractors as two distinct components. 2.1. Emotions. Since the training process makes use of emoticons as noisy labels, it is crucial to discuss the role they play in classification. We will discuss in detail our training and test set in the Evaluation section. We strip the emotions out from our training data. Stripping out the emoticons causes the classifier to learn from the other features (e.g. unigrams and bigrams) present in the tweet. The classifier uses these non-emoticon features to determine the sentiment. III. ALGORITHMS We use Priority based message stack queuing algorithm for our project. We take advantage of the following properties to reduce the feature space. RESEARCH ARTICLE OPEN ACCESS
  • 2. Prajakta Patil et al. Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.78-80 www.ijera.com 79 | P a g e Usernames Users often include usernames in their tweets in order to direct their messages.. 3.1. Priority based message stack queuing: Message Queuing is useful when the client application is often disconnected from the network. In our case the tweets can be send according to priority stack checking the date of telecast and the nature of message to be unique. A message can have a priority that defines the order in which the message will be read from a queue. In C#, we can also create Message Queues programmatically using the Create() method of MessageQueue class. With Create() method, the path of the new queue must be passed. Example: using System; using System.Messaging; namespace FirstQueue { class Program { static void Main(string[] args) { try { if (!MessageQueue. Exists(@".Private$FirstQueue")) { MessageQueue.Create (@".Private$FirstQueue"); } MessageQueue queue = new MessageQueue (@".Private$FirstQueue"); queue.Send ("First Message ", " Label "); } Catch (MessageQueueException ex) { Console.WriteLine (ex.Message); } } } IV. EVALUATION 4.1 Experimental Set-up. We create a real time system blogging that includes following modules: Figure 1. Modules 4.1.1 The Broadcast group. The broadcast group is actually the registered people who operate as groups for casting the news from any part of the world and this news queue is streamed to the admin. 4.1.2 Admin Module. Admin filters the news casts, check credibility and implement the priority queuing algorithm and telecasts to the users. The tweets will be real time. So new updates are display timely. Old news is given a time frame of display and is pulled off after it becomes outdated or irrelevant. 4.1.3 Users. The users are the social media network users who can view and comment on the site. Users can send the real time trendy tweets. And the users can benefit with current alerts and the location in case if it is concern. V. FUTURE-WORK In tweets machine learning techniques works well for classifying sentiment. We believe that the accuracy could still be improved. Below is a list of ideas we think could help in this direction. Internationalization: We focus only on English sentences, but Twitter has many international users. It should be possible to use our approach to classify sentiment in other languages [1]. Utilizing emoticon data in the test set: From our training data emoticons are stripped. This means that if our test data contains an emoticon feature, this does not influence the classifier towards a class. This should be addressed because the emoticon features are very valuable [1]. VI. RELATED WORK We consider each registered user as a sensor and apply particle filtering which are namely used for estimation of location. The working of particle filter is better than other comparable methods for locations estimation of target events. Each tweet has its own post Time so in a temporal model we show when target event occurs. How many tweets which are similar are posted on our platform depending on that target event behaviour can be analyzed. In spatial model, each tweet also has itโ€™s a location (from where tweets was posted) and by using โ€œparticle filterโ€, can locate the targeted events from using tweets. Our work is on detection of real time events like earthquakes using tweets. Some researchers examined the twitter and they found out that it is one of the microblogging service. Real time nature an important characteristic of micro blogging service. So for our research twitter has been considered, to detect
  • 3. Prajakta Patil et al. Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.78-80 www.ijera.com 80 | P a g e the real time event depending on the tweets posted. For example using twitter people make comment on various topics and real time events. In the real time the tweet analysis also helps to know the important topics on which people are focusing. Figure 2. Proposed system VII. CONCLUSION Peoples need to be get notifications of disaster events in short time and Twitter is one of the most popular networking site which received attention from peoples by providing its real time nature. So We are creating a system to collects the tweets from various group of users and detect real time events like earthquake, traffic etc. by using Priority based message stack queuing algorithm and Classify tweets into a positive and negative class. So it will produce a probabilistic model for event detection. REFERENCES [1] โ€œTwitter sentiment classification using distant supervisionโ€ by Alec Go, Richa Bhayani, Lei Huang. [2] D. O. Computer, C. Wei Hsu, C. Chung Chang, and C. jen Lin. A practical guide to support vector classification chih-wei hsu, chih-chung chang, and chih-jen lin. Technical report, 2003. [3] N. Cristianini and J. Shawe-Taylor. An Introduction to Support Vector Machines and Other Kernel-based Learning Methods. Cambridge University Press, March 2000. [4] B. J. Jansen, M. Zhang, K. Sobel, and A. Chowder. Micro-blogging as online word of mouth branding. In CHI EA '09: Proceedings of the 27th international conference extended abstracts on Human factors in computing systems, pages 3859{3864, New York, NY, USA, 2009. ACM. [5] T. Joachims. Making large-scale support vector machine learning practical. In B. SchAolkopf, C. J. C. Burges, and A. J. Smola, editors, Advances in kernel methods: support vector learning, pages 169{184. MIT Press, Cambridge, MA, USA, 1999. [6] C. D. Manning and H. Schutze. Foundations of statistical natural language processing. MIT Press,1999. [7] G. Mishne. Experiments with mood classification in blog posts. In 1st Workshop on Stylistic Analysis of Text for Information Access, 2005. [8] K. Nigam, J. Laberty, and A. McCollum. Using Maximum entropy for text classification. In IJCAI-99 Workshop on Machine Learning for Information Filtering, pages 61{67, 1999. [9] B. Pang and L. Lee. Opinion mining and sentiment analysis. Foundations and Trends in Information Retrieval, 2(1-2):1{135, 2008. [10] B. Pang, L. Lee, and S. Vaithyanathan. Thumbs up? Sentiment classification using machine learning techniques. In Proceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 79{86, 2002. [11] J. Read. Using emoticons to reduce dependency in machine learning techniques for sentiment classification. In Proceedings of ACL-05, 43nd Meeting of the Association for Computational Linguistics. Association for Computational Linguistics, 2005.