1. Trang chủ
  2. » Thể loại khác

TSum4act A Framework for Retrieving and Summarizing Actionable Tweets During a Disaster for Reaction

12 124 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 12
Dung lượng 658,14 KB

Nội dung

TSum4act: A Framework for Retrieving and Summarizing Actionable Tweets During a Disaster for Reaction Minh-Tien Nguyen1(B) , Asanobu Kitamoto2 , and Tri-Thanh Nguyen3 Hung Yen University of Technology and Education (UTEHY), Hung Yen, Vietnam tiennm@utehy.edu.vn National Institute of Informatics, Tokyo, Japan kitamoto@nii.ac.jp Vietnam National University, Hanoi (VNU), University of Engineering and Technology (UET), Hanoi, Vietnam ntthanh@vnu.edu.vn Abstract Social networks (e.g Twitter) have been proved to be an almost real-time mean of information spread, thus they can be exploited as a valuable channel of information for emergencies (e.g disasters) during which people need updated information for suitable reactions In this paper, we present TSum4act, a framework designed to tackle the challenges of tweets (e.g diversity, large volume, and noise) for disaster responses The objective of the framework is to retrieve actionable tweets (e.g casualties, cautions, and donations) that were posted during disasters For this purpose, the framework first identifies informative tweets to remove noise; then assigns informative tweets into topics to preserve the diversity; next summarizes the topics to be compact; and finally ranks the results for user’s faster scan In order to improve the performance, we proposed to incorporate event extraction for enriching the semantics of tweets TSum4act has been successfully tested on Joplin tornado dataset of 230.535 tweets and the completeness of 0.58 outperformed 17%, of the retweet baseline’s Keywords: Data mining Tweet recommendation · Event extraction · Tweet summarization · Introduction Twitter provides a new method for spreading information during natural or man-made disasters [13] in the form of tweets (a short text message with the maximum of 140 letters) These tweets mention a wide range of information in all aspects of life, from personal aspects to disaster facts During a disaster, tweets usually tend to explode in a large volume and high speed This can challenge the people who seek up-to-date information for making decisions To seek the information, people can use Twitter’s search function However, this function bases c Springer International Publishing Switzerland 2015 T Cao et al (Eds.): PAKDD 2015, Part II, LNAI 9078, pp 64–75, 2015 DOI: 10.1007/978-3-319-18032-8 A Framework for Retrieving and Summarizing Actionable Tweets 65 on boolean queries and responses highly redundant tweets in a reverse chronological order This challenge inspires us to present a framework that incorporates event extraction to generate event graphs in retrieving informative tweets for people in disasters Recently, tweet summarization has received a lot of attention from papers [5,8,12] The authors in these researches have solved the summarization by using term frequency in corporation with inverted document frequency (TF-IDF) or lexical approach However, these approaches face the noise of tweets and may not exploit entities (e.g times, locations, numbers, etc) which play an important role in summarization [15] These limitations inspire us to apply event extraction in our framework Our contributions are: – We adapt event extraction for improving the performance of summarization Our approach has two advantages: (1) exploiting the important role of entities and (2) reducing the impact of lexical representation noise – We successfully apply our framework in a real dataset which is collected during Joplin tornado The completeness measure of 0.58 indicates that information from our framework can be combined with other sources (i.e TV, online news, or emergency services) to provide important information to people during disasters We set our problem as the tweet recommendation by relying on extractive summarization (e.g based on event extraction) Given a disaster-related query, our model: 1) retrieves tweets containing the query from the source; 2) due to the fact that the tweets are diverse and noisy (e.g there are a lot of unrelated ones), the model filters out irrelevant ones to get a smaller set of informative tweets; 3) in order to provide finer-grained information to users, the model divides informative tweets into predefined classes (i.e casualties, cautions, and donations); 4) since the number of tweets in each class is still big, for each class of tweets, the model separates them into topics (in the form of clusters); finally, 5) to make the results compact, the model ranks the tweets and gets the top ones as a summary of each cluster to recommend to users For improving the semantics and reducing the lexical noise of the tweets, we propose to represent tweets in the form of events (viz after applying event extraction) for constructing a graph as the input for ranking algorithm The rest of this paper is organized as follows: related works are showed in Section 2; we will give our idea to solve informative tweets summarization in Section 3; our contributions are in Section 4.1, 4.2, 4.3, and 4.3; results are showed in Section 5; the last section is the conclusion Related Work Ritter et al [12] proposed a method which automatically extracted open domain events In this method, events were ranked and classified before being plotted in calender entries The result increased 14% of F1 over baseline (without NER) However, the ranking mechanism can badly affect in generating result because 66 M.-T Nguyen et al the author used frequency of entities, thus unimportant entities may generate redundant events Chakrabarti and Punera used Hidden Markov Model to identify sub-events of the parent event with 0.5 of precision and 0.52 of recall in football matches [5] To summarize information, the author combined tf-idf and Cosine similarity However, this method might not achieve high precision because the noise of tweets In our work, we rely on entities rather than single words (terms) Khan et al [8] used lexical level underlying topical modeling and graphical model for summarizing tweets in a debating event The result was about 81.6% of precision and 80% recall with their dataset However, this method faces the noise from tweets, does not utilize entities, and requires a large of lexicons for generating the summarization TSum4act Framework TSum4act solves tweet summarization and recommendation in disaster responses The problem can be defined as follows: Input: the keywords related to a natural disaster Output: A small set of the most informative tweets which can be used in situational awareness for supporting the making of suitable reaction The tweets are divided into classes (e.g casualty, caution, and donation), and each class, in turn, is divided into topics represented by top ranked tweets We call this set as informative tweets or actionable tweets because these tweets provide useful information which help people making suitable decisions in a disaster The framework in Fig consists of four main components: tweet retrieval, informative tweet identification, topic identification, and tweet summarization The first component receives keywords from users and retrieves relevant tweets from Twitter The second component identifies informative tweets (i.e tweets User Tweet Retrieval Informative Tweet Identification Keyword Topic Idenfitication Fig Overview of TSum4act framework Recommended Tweets Tweet Summarization A Framework for Retrieving and Summarizing Actionable Tweets 67 which help people making decisions in a disaster rather than personal tweets) We solve this problem by using classification because tweets can be divided into informative and not informative Another task of this component is to put informative tweets into important classes for users’ easy navigation The third component takes each tweet class to identify the different topics (i.e tweets of which the meaning is close to each other) as a preliminary step to compress the tweets for reducing the tweet volume size This component is built based on clustering which has the ability to group items that are close to each other into a cluster The last component has the responsibility of summarizing the data to produce recommended tweets to users This task is done by representing tweets in the form of events, and an event graph is constructed for each topic for ranking After ranking, near-duplicate tweets are removed, and top ranked ones are returned to users as a summary for recommendation The first component is rather simple, therefore, in this paper we only focus on the three remaining components 4.1 The Process of TSum4act Informative Tweet Identification We follow the approach of [7,14] to apply classification for informative tweet identification The classification process includes three steps along with three binary classifiers The first step distinguishes whether tweets are informative or not; the second one identifies whether informative tweets are direct (viz events that users see or hear directly) or indirect, e.g a tweet that is forwarded (called retweet); and the third step classifies the direct tweets into three classes: casualty/damage, caution/advice, and donation/offer (called valuable classes) 4.2 Topic Identification The number of tweets is still big after classifying, we propose to assign tweets into topics (in the form of clusters) (to ensure the diversity) for later summarization (to keep the result compact) Since common clustering methods (e.g K-means) normally base on the frequency of words (e.g tf-idf), thus they are not suitable for keeping the semantics of tweets whereas hidden topic models are a good selection to solve this issue Assigning tweets into clusters helps users to easily navigate the information This component first generates document distributions by LDA and secondly, it uses a clustering algorithm to assign tweets into topic clusters LDA: LDA generates a probability distribution of documents (tweets) over topics by using estimated methods Tweets can be assigned into clusters by a clustering algorithm based on this distribution We decide to use LDA since it was adapted for short texts (e.g., tweets or messages) [8] Another interesting aspect is that it not only solves the clustering problem but also generates topical 68 M.-T Nguyen et al words which can be used for abstractive summarization For simplicity, we have adopted Latent Dirichlet Allocation (LDA)1 [1] Clustering: LDA assigns tweets into hidden topics which are represented by words/phrases However, the framework expects tweets which belong to clusters Therefore, a clustering algorithm is used to solve this issue The idea of assigning tweets into clusters is to find out the closest distance from tweet t to cluster ci by an iterative algorithm which uses Jensen-Shannon divergence 4.3 Tweet Summarization This component first extracts events in tweets in each topic to built a graph Subsequently, the event graphs are the input for a ranking algorithm to find out important (i.e highest score) events Finally, after removing near-duplicate tweets, top ones are returned to users Event Extraction: As introduced previously, we use a ranking algorithm to find out informative tweets In fact, normal ranking algorithms only rely on keywords or even topical statistic can not completely utilize the semantics of tweets, thus, the final result may be not good We propose to use ranking approach in which a tweet has a correlation with another based on the similarity The similarity can be denoted by using words or complete tweets However, using words or complete tweets faces the noise of tweet (i.e stop words, hashtags, or emoticons); hence, this can badly affect in calculating the similarity As the contribution, we propose to use event extraction to represent the similarity between two tweets Using event extraction has two advantages: 1) reducing the noise of tweet and 2) keeping the semantics of tweets Therefore, the framework can achieve high accuracy in generating informative tweets We define an event as a set of entities in a tweet An event includes subject, event phrase, location, and number as follows event = {subject, event phrase, location, number} (1) where subject answers the question WHAT (e.g a tornado or a road) which is a cause or result; event phrase represents the action/effect of the subject; location answers WHERE the event occurs (e.g Oklahoma); and number focuses to answer the question HOW MANY (e.g the number of victims) To extract above attributes we use NER tool of [11] which annotates the tweets with predefined tags, then, we parse the result to extract values of the tags corresponding to the attributes We accept an event which does not have complete attributes An example of an event from an original tweet is showed as below: http://jgibblda.sourceforge.net/ A Framework for Retrieving and Summarizing Actionable Tweets 69 Table The illustration of two equations Tweet Simpson Cosine Tornado kills 89 in Missouri Tornado kills 89 in Missouri yesterday 0.0 0.912 Original tweet: “Tornado kills 89 in Missouri yesterday” Event: {Tornado, kills, Missouri, 89} In this example, Tornado is the subject, kills is the event phrase, Missouri is the location, and 89 is the number of victims Events in this step are input for generating event graphs in the next section Event Graph Construction: The event graphs require vertices and weights as inputs In this graph, two vertices (two events) are connected by an edge with a weight To identify the weight we consider two equations: Simpson and Cosine However, in this case, Cosine is better The compared intuition of two equations is showed in Table In this table, the value of 0.0 of Simpson indicates that two tweets are completely similar despite the difference of the word ”yesterday” between the two sentences In contrast, the value of Cosine equation is 0.912 giving two tweets are nearly completely similar Therefore, we follow Cosine to calculate the weight of two events Given two events A and B, Cosine equation is showed in Eq (2) sim(A, B) = n i=1 n (A i) i=1 Ai × Bi × n i=1 (Bi ) (2) The sim(A, B) may be equal in some cases indicating the two events are totally different Therefore, to make the result compact, two events are deemed to have relation if they have the similarity measure above zero, and an event is removed if it has no relation with any other event After identifying vertices and weights the framework generates graphs for the raking step In this paper, a graph is defined as G =< V, E, W > where: – V : a set of vertices denoted as V = {v1 , v2 , , } where vith corresponds to an event ith and n is the number of events in each cluster – E : a set of edges denoted as E = {e1 , e2 , , em } where eth j connects two th th vertices vk and vh in V – W : a weight matrix holding the weight (in term of similarity) of edges In this graph, the weight matrix is calculated by Eq (2) As this calculation, two vertices are connected when the weight is greater than The graph G is the input for ranking algorithm in the next section Ranking: The goal of our method is to retrieve the most useful information To solve this task a random method can be used after clustering However, 70 M.-T Nguyen et al this method retrieves tweets which may not have enough evidence to conclude whether they are informative An alternative approach is to use a ranking algorithm It is suitable with our objective because: 1) our goal is to retrieve top k of tweets in each cluster and 2) important tweets converge at central clusters after clustering; hence the ranking algorithm can be easy to find out informative tweets The framework uses PageRank [2] for retrieving informative tweets This is because, firstly, it is a successful algorithm for ranking webpages Secondly, PageRank ranks vertices to find out important vertices This is similar with our goal in finding important events The ranking mechanism is showed in E.q (3) P R(vj ) = (1 − d) + d vi ,vj∈E Wi,j × P R(vi ) vi ,vk ∈E Wik (3) Equation (3) shows the process to calculate the rank of a node in a recursive mechanism by using power iteration In this equation, d is the damping factor which is used to reduce the bias of isolated nodes in a graph Filtering: The final module retrieves informative tweets corresponding to important events Though it is possible to apply filtering before ranking, we put it after ranking to avoid the situation where the filtering produces a so sparse event graph that the performance of the ranking is badly affected The filtering uses Simpson equation to remove near-duplicate tweets because they provide the same information with others Two near-duplicate tweets contain a little difference of information (e.g in Tab 1) The Simpson is showed in Eq (4) |S(t1 ) ∩ S(t2 )| (4) simp(t1 , t2 ) = − min(|S(t1 )|, |S(t2 )|) where S(t) denotes the set of words in tweet t Experiments and Results 5.1 Experimental Setup Data: Dataset is 230.535 tweets, which were collected during Joplin tornado in the late afternoon of Sunday, May 22, 20112 at Missouri The unique tweets were selected by Twitter Streaming API using the hashtag #joplin The dataset is a part of AIDR project [6] Parameter Setting: Following [8] we choose α = β = 0.01 with 1.000 iterations and k ∈ [2, 50] for LDA k will be identified in 5.3 In the Section 4.2 we use μ = 0.9 Following [2], we choose d = 0.85 for PageRank Finally, Eq (4) only keeps tweets which satisfy simp(t1 , t2 ) > 0.25 The value 0.25 is achieved by running the experiment over many times http://en.wikipedia.org/wiki/2011 Joplin tornado A Framework for Retrieving and Summarizing Actionable Tweets 5.2 71 Retweet Baseline Model We use retweet model as a baseline [4] This is because, firstly, it represents the importance of a tweet based on retweet Intuitively, if a message receives many retweets, it can be considered an informative tweet Secondly, the model is simple because it has already provided by Twitter 5.3 Preliminary Results Classification: To build binary classifiers we use Maximum Entropy (ME)3 with N-gram features because ME has been a successful method for solving classification problem [10] Another interesting aspect is that our data is sparse after pre-processing while ME is a suitable approach to deal with sparse data We not use hashtags, emoticons, or retweets because these features are usually used in emotional analysis rather than in classification The performance of classification is measured by the average of 10-folds cross validation Results are showed in Table Table The performance of classification Class Informative Information Direct Tweets Casualty Caution Donation Precision Recall F1 0.75 0.87 0.8 0.71 0.83 0.77 0.89 0.89 0.89 0.88 0.91 0.89 0.87 0.88 0.88 The results in Tab show that classifiers achieve good performances 0.8, 0.77, and about 0.89 of F1 in the three classification levels, respectively After classification, the framework only keeps tweets of the valuable classes including casualty/damage, caution/advice, and donation/offer Selecting the Number of Clusters: We follow cluster validation to select k [3,9] We only select k ∈ [2 : 50] because if k > 50 clusters may be overfitting while it is too general if k < (only one cluster) The result of cluster validation is illustrated in Fig 2a After clustering, informative tweets belong to clusters which will be used for the summarization and recommendation Evaluation Method: To evaluate the performance of the framework, we use three annotators to rate retrieved tweets (top 10 tweets) This is because: 1) selecting top k (k=10) is similar to recommendation and 2) our data needs user ratings to calculate performance of this component The retrieved tweets are given for annotators to rate a value from to (5: very good; 4: good; 3: acceptable; 2: poor; and 1: very poor) Each tweet is rated in three times; the score of http://www.cs.princeton.edu/maxent 72 M.-T Nguyen et al The average of three users 100 0.04 Casualty 90 Event graph Caution 80 Baseline Percentage (%) Clustering validation value The stability of clusters 0.05 Donation 0.03 0.02 0.01 70 60 50 40 30 20 10 0 10 15 20 25 30 35 40 45 Number of clusters (a) The result of cluster validation 50 User-1 User-2 User-3 Three users (b) The average of completeness Fig Selecting k and the average of completeness of three users a tweet is the average of rating scores after rounding The average of inter-rater agreement is 87.6% after cross-checking the results of three annotators Tweet Summarization and Recommendation: We define the completeness to measure the performance of our method The completeness measures how well the summary covers the informative content in the recommended tweets by the total rated scores over maximal score in each cluster as in E.q (5) completeness = (rating score)/50 (5) where rating score is the users’ score, and 50 is the maximum total score (viz 10 tweets each has a maximum score of 5) The results of the three annotators are illustrated in Fig 3, 4, and indicating that our framework dominates the baseline in Fig 3a, 3c, 4c, 5a, 5b, and 5c while it is hard to conclude our framework is better in Caution in Fig 3b and 4b The average of completeness of three users is showed in Fig It is equal in Caution of 1st annotator about 0.42 in Fig 6a while our framework outperforms baseline on other annotators In Fig 6a, the result of our framework is twice higher than baseline in Donation about 0.7 and 0.3 The result of 2nd annotator is higher than other users and the completeness of our method in Fig 6b is around 0.6 The average of completeness on three annotators over classes is showed in Fig 2b The result shows that the completeness of our method outperforms baseline method about 17% (0.58 and 0.41, respectively) The results in Casualty and Caution are similar about 0.55 with our method and around 0.44 with baseline In Donation our method outperformed the baseline with the result of 0.64 in comparison with 0.37 A Framework for Retrieving and Summarizing Actionable Tweets The completeness of caution clusters Baseline 0.8 0.7 0.6 0.5 0.4 0.3 0.7 0.6 0.5 0.4 0.3 0.2 0.2 0.1 0.1 Baseline 0.8 Completeness Event graph Completeness Completeness 1.2 Event graph 0.9 0.9 The completeness of donation clusters The completeness of casualty clusters 1.1 Event graph Baseline 0.9 0.8 0.7 0.6 0.5 0.4 0.3 0.2 0.1 10 73 10 15 20 25 30 35 40 45 Number of clusters Number of clusters 10 12 14 16 Number of clusters (a) The completeness of (b) The completeness of (c) The completeness of casualty caution donation Fig The comparison of two methods in tweet recommendation of 1st user The completeness of caution clusters The completeness of casualty clusters Event graph Baseline 0.9 0.8 0.7 0.6 0.5 0.4 0.3 0.7 0.6 0.5 0.4 0.3 0.2 0.1 0.1 Baseline 0.8 0.7 0.6 0.5 0.4 0.3 0.2 0.1 10 Event graph 0.9 Baseline 0.8 0.2 1 Event graph 0.9 Completeness 1.1 Completeness Completeness The completeness of donation clusters 1.2 10 15 20 25 30 35 40 45 Number of clusters Number of clusters 10 12 14 16 Number of clusters (a) The completeness of (b) The completeness of (c) The completeness of casualty caution donation Fig The comparison of two methods in tweet recommendation of 2nd user The completeness of caution clusters The completeness of casualty clusters Event graph Baseline Completeness 0.8 0.7 0.6 0.5 0.4 0.3 0.7 0.6 0.5 0.4 0.3 0.2 0.1 0.1 Number of clusters 10 Baseline 0.8 0.2 1.2 Event graph 0.9 Completeness 0.9 Completeness The completeness of donation clusters 1 1.1 Event graph Baseline 0.9 0.8 0.7 0.6 0.5 0.4 0.3 0.2 0.1 10 15 20 25 30 Number of clusters 35 40 45 10 12 14 16 Number of clusters (a) The completeness of (b) The completeness of (c) The completeness of casualty caution donation Fig The comparison of two methods in tweet recommendation of 3rd user 5.4 Discussion Fig 3, 4, and indicate that the results of our method are quite similar with baseline in Fig 3b, 4a, 4b, and 5b, but in the remaining figures our method prevails By checking original tweets we recognize that clusters which have a high completeness contain highly relevant tweets It appears in both the two methods 74 M.-T Nguyen et al The average of User The average of User 100 Event graph 90 Event graph 90 Event graph 80 Baseline 80 Baseline 80 Baseline 70 60 50 40 30 20 70 60 50 40 30 20 10 10 0 Casualty Caution Donation Three classes Percentage (%) 90 Percentage (%) Percentage (%) The average of User 100 100 70 60 50 40 30 20 10 Casualty Caution Three classes Donation Casualty Caution Donation Three classes (a) The average of 1st user (b) The average of 2nd user (c) The average of 3rd user Fig The average of completeness of two methods in tweet recommendation of three users For example, almost top 10 tweets in cluster 1st in 5b and 5th in 5a are strongly related to the cautions, advices, or casualties of the tornado By contrast, clusters which have a low completeness include many irrelevant tweets (including images and videos) The checking process also shows that reasons making the performance of baseline is lower than that of our method Firstly, there are many tweets which contain images or videos, but they are irrelevant according to our investigation Secondly, many tweets in donation receive a lot of retweets because it mentions about a famous person (President Obama) Another interesting point is the speech of Eric Cantor, who is a member of GOP of U.S Eric Cantor opposes disaster relief and saves money Therefore, his tweets receive many retweets Finally, a lot of tweets mention to memorial services for victims The results indicate that ranking based on event graph is an important factor which making our framework achieves a good performance If an event receives a high weight, then it has many strong relations with others It means that this event tends to appear in many tweets; hence, ranking events can retrieve important tweets This phenomenon also appears in other clusters which have a high completeness An alternative interesting point appears in cluster 5th of caution in Fig 3b It is the lowest of completeness of our method The checking process shows that many events are irrelevant indicating that the clustering and event extraction are not efficient in this cluster Conclusion In this paper, we introduced TSum4act, a framework for retrieving informative tweets during a disaster for suitable reaction Our framework utilizes state-of-theart machine learning techniques, event extraction, and graphical model to deal with the diversity, large volume and noise of tweets TSum4act was compared with retweet model and the result indicates that our framework can be used in real disasters A Framework for Retrieving and Summarizing Actionable Tweets 75 For future works, we plan to first improve the performance of classification by trying multi-class classifiers Secondly, the evaluation method should be considered because we only select the top 10 tweets In addition, our method should be compared with other model as lexicons Finally, we plan to summarize recommended tweets by using abstractive approach References Blei, D.M., Ng, A.Y., Jordan, M.I.: Latent dirichlet allocation The Journal of Machine Learning Research 3, 993–1022 (2003) Brin, S., Page, L.: The anatomy of a large-scale hypertextual web search engines Computer Networks and ISDN System 30(1), 107–117 (1998) Brody, S., Elhadad, N.: An unsupervised aspect-sentiment model foronline reviews In: Human Language Technologies: The 2010 Annual Conferenceof the North American Chapter of the Association for Computational Linguistics Association for Computational Linguistics (2010) Busch, M., Gade, K., Larson, B., Lok, P., Luckenbill, S., Lin, J.: Earlybird: realtime search at twitter In: 2012 IEEE 28th International Conference on Data Engineering (ICDE) IEEE (2012) Chakrabarti, D., Punera, K.: Event summarization using tweets In: ICWSM (2011) Imran, M., Castillo, C., Lucas, J., Meier, P., Vieweg, S.: Aidr: artificial intelligence for disaster response In: Proceedings of the Companion Publication of the 23rd International Conference on World Wide Web Companion International World Wide Web Conferences Steering Committee, pp 159–162, April 2014 Imran, M., Elbassuoni, S., Castillo, C., Diaz, F., Meier, P.: Extracting information nuggets from disaster-related messages in social media In: ISCRAM, BadenBaden, Germany (2013) Khan, M.A.H., Bollegala, D., Liu, G., Sezaki, K.: Multi-tweet summarization of real-time events In: Proc of ASE/IEEE International Conference on Social Computing IEEE (2013) Levine, E., Domany, E.: Resampling method for unsupervised estimation of cluster validity Neural Computation 13(11), 2573–2593 (2001) 10 Nigam, K., Lafferty, J., McCallum, A.: Using maximum entropy for text classification In: IJCAI-99 Workshop on Machine Learning for Information Filtering, vol 1, pp 61–67 (1999) 11 Ritter, A., Clark, S., Mausam, Etzioni, O.: Named entity recognition in tweets: an experimental study In: Proceedings of the Conference on Empirical Methods in Natural Language Processing Association for Computational Linguistics (2011) 12 Ritter, A., Mausam, Etzioni, O., Clark, S.: Open domain event extraction from twitter In: KDD, pp 1104–1112 (2012) 13 Sakaki, T., Okazaki, M., Matsuo, Y.: Earthquake shakes twitter users: real-time event detection by social sensors In: Proceedings of the 19th International Conference on World Wide Web ACM (2010) 14 Vieweg, S.E.: Situational Awareness in Mass Emergency: A Behavioral and Linguistic Analysis of Microblogged Communications PhD thesis, University of Colorado at Boulder (2012) 15 Xu, W., Grishman, R., Meyers, A., Ritter, A.: A preliminary study of tweet summarization using information extraction In: NAACL (2013) ... model and the result indicates that our framework can be used in real disasters A Framework for Retrieving and Summarizing Actionable Tweets 75 For future works, we plan to first improve the performance... have complete attributes An example of an event from an original tweet is showed as below: http://jgibblda.sourceforge.net/ A Framework for Retrieving and Summarizing Actionable Tweets 69 Table... clustering and event extraction are not efficient in this cluster Conclusion In this paper, we introduced TSum4act, a framework for retrieving informative tweets during a disaster for suitable reaction

Ngày đăng: 16/12/2017, 13:15

TÀI LIỆU CÙNG NGƯỜI DÙNG

TÀI LIỆU LIÊN QUAN