| { |
| "paper_id": "S15-2008", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T15:36:48.188433Z" |
| }, |
| "title": "AMRITA\u00afCEN@SemEval-2015: Paraphrase Detection for Twitter using Unsupervised Feature Learning with Recursive Autoencoders", |
| "authors": [ |
| { |
| "first": "Shanmuga", |
| "middle": [], |
| "last": "Mahalakshmi", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Center for Excellence in Computational Engineering and Networking Amrita Vishwa Vidyapeetham Coimbatore", |
| "location": { |
| "country": "India" |
| } |
| }, |
| "email": "mahalakshmisklu@gmail.com" |
| }, |
| { |
| "first": "Anand", |
| "middle": [], |
| "last": "Sundaram", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Center for Excellence in Computational Engineering and Networking Amrita Vishwa Vidyapeetham Coimbatore", |
| "location": { |
| "country": "India" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Madasamy", |
| "middle": [], |
| "last": "Kumar", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Center for Excellence in Computational Engineering and Networking Amrita Vishwa Vidyapeetham Coimbatore", |
| "location": { |
| "country": "India" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Soman", |
| "middle": [ |
| "Kotti" |
| ], |
| "last": "Padannayil", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Center for Excellence in Computational Engineering and Networking Amrita Vishwa Vidyapeetham Coimbatore", |
| "location": { |
| "country": "India" |
| } |
| }, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "We explore using recursive autoencoders for SemEval 2015 Task 1: Paraphrase and Semantic Similarity in Twitter. Our paraphrase detection system makes use of phrase-structure parse tree embeddings that are then provided as input to a conventional supervised classification model. We achieve an F1 score of 0.45 on paraphrase identification and a Pearson correlation of 0.303 on computing semantic similarity.", |
| "pdf_parse": { |
| "paper_id": "S15-2008", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "We explore using recursive autoencoders for SemEval 2015 Task 1: Paraphrase and Semantic Similarity in Twitter. Our paraphrase detection system makes use of phrase-structure parse tree embeddings that are then provided as input to a conventional supervised classification model. We achieve an F1 score of 0.45 on paraphrase identification and a Pearson correlation of 0.303 on computing semantic similarity.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "The process of rewriting text with a different choice of words or using a different sentence structure while preserving meaning is called paraphrasing. Identifying paraphrases can be a difficult task owing to the fact that evaluating surface level similarity is often not enough, but rather systems must take into account the underlying semantics of the content being assessed.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Paraphrasing and paraphrase detection are important and challenging tasks, which find their application in various subfields of Natural Language Processing (NLP) such as information retrieval, question answering (Erwin and Emiel, 2005) , plagiarism detection (Paul Clough et al., 2002) , text summarization and evaluation of machine translation (Chris Callison Burch, 2008) .", |
| "cite_spans": [ |
| { |
| "start": 212, |
| "end": 235, |
| "text": "(Erwin and Emiel, 2005)", |
| "ref_id": "BIBREF6" |
| }, |
| { |
| "start": 259, |
| "end": 285, |
| "text": "(Paul Clough et al., 2002)", |
| "ref_id": "BIBREF12" |
| }, |
| { |
| "start": 361, |
| "end": 373, |
| "text": "Burch, 2008)", |
| "ref_id": "BIBREF2" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "We explore using recursive autoencoders for paraphrase detection and similarity scoring as a part of SemEval 2015 Task 1: Paraphrase and Semantic Similarity in Twitter. Twitter is an online social networking service with millions of users who casually converse about diverse topics in a continuous and contemporaneous manner (Wei Xu et al., 2014; Wei Xu et al., 2015) . Table 1 gives an example of real tweets, some of which are paraphrases of each other. The very casual style of the Twitter corpus makes it more challenging to work with for many NLP tools. We use vector space embeddings, in part, since they are relatively good at dealing with noisy data.", |
| "cite_spans": [ |
| { |
| "start": 325, |
| "end": 346, |
| "text": "(Wei Xu et al., 2014;", |
| "ref_id": "BIBREF24" |
| }, |
| { |
| "start": 347, |
| "end": 367, |
| "text": "Wei Xu et al., 2015)", |
| "ref_id": "BIBREF25" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 370, |
| "end": 377, |
| "text": "Table 1", |
| "ref_id": "TABREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Socher et al. (2011) explored using recursive autoencoders (RAEs) and dynamic pooling for paraphrase detection. They parse each sentence within a pair, compute embeddings for each node in the parse trees, and then construct a similarity matrix comparing the embedding vectors for all nodes within the two parse trees. Using dynamic pooling, they convert the variable size similarity matrix for each sentence pair to a matrix of fixed size. The resulting fixed size matrix is then given to a softmax classifier to detect whether the sentences are paraphrases.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The architecture of our system is depicted in Figure 1 . The raw Twitter corpus is preprocessed using a phrase-structure parser. The resulting parse trees are then used to train an unfolding RAE model. This model provides us with embedding vectors that are then used to compute the similarity between every node in the parse trees associated with a sentence pair. A similarity matrix is populated with the nodeto-node similarity scores as measured by the Euclidean distance beween the node embedding vectors. The size of the similarity matrix depends on Sentence 1", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 46, |
| "end": 55, |
| "text": "Figure 1", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "A Deep Learning System", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Paraphrase or Not AAP is in the Adidas commercial AAP in that Adidas Commercial lol Paraphrase That amber alert was getting annoying Why do I get amber alerts tho Not paraphrase I am so watching Cinderella right now Im so watching Cinderella right now Paraphrase That shot counted by Bayless Bayless just RAN for it Not Paraphrase Damon EJ 1st Qb off the board if EJ is the 1st QB off the board Paraphrase The unfolding recursive autoencoder computes phrase embedding vectors for each node in a parse tree. For a pair of sentences being evaluated, the distances between all the nodes in the paired parse trees are computed and fill a variable sized similarity matrix. Dynamic pooling is used to convert the variable size similarity matrix to fixed size matrix. The fixed size similarity matrix is given to a softmax classifier to detect both whether the paired sentences are paraphrases and for paraphrase similarity scoring. the number of nodes in the parse trees being compared. This variable size similarity matrix is converted to a fixed size matrix using Dynamic Pooling (Socher et.al, 2011) . Dynamic pooling partitions the rows and columns of similarity matrix into n p approximately equivalent segments which creates an n p \u00d7 n p grid. As depicted in Figure 2 , the individual cells in the fixed size n p \u00d7 n p matrix are assign to the minimum values of their corresponding partitions in the original matrix. The resulting fixed size matrix is then used to train a softmax classifier to perform the actual paraphrase detection and pairwise similarity scoring tasks. To classify a pair of new sentences, the sentences are first parsed. Using the parse trees, the embedding vectors for each sentence are constructed and used to populate a nodeto-node similarity matrix. This matrix is converted to a fixed size using dynamic pooling and passed to the softmax classification model.", |
| "cite_spans": [ |
| { |
| "start": 1076, |
| "end": 1096, |
| "text": "(Socher et.al, 2011)", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 1259, |
| "end": 1267, |
| "text": "Figure 2", |
| "ref_id": "FIGREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Sentence 2", |
| "sec_num": null |
| }, |
| { |
| "text": "The architecture of our unfolding RAEs is illustrated in Figure 2 . The main difference between standard RAEs and unfolding RAEs is that standard RAEs are only directly trained to have each node reconstruct its immediate children. Unfolding RAEs differ in that the training objective assess not only how well the representation of each node reconstructs it's immediate children, but rather how well the node's representation reconstructs the entire parse tree fragment rooted at the current node.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 57, |
| "end": 65, |
| "text": "Figure 2", |
| "ref_id": "FIGREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Unfolding Recursive Autoencoders (RAEs)", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "We use a general domain parsing model distributed with the Stanford Parser, englishPCFG v1.6.9 (Klein and Manning, 2003) . Prior to training the RAE vectors, we pre-trained word embedding vectors for use as the word level representations (Ronan and Jason, 2008) . The hyperparameter values used for our system are as follows: (1) the size of the pooling matrix n p = 13; (2) the regularization for the softmax classifier c = 0.05; (3) Both the RAE and word embeddings are 100-dimensional vectors.", |
| "cite_spans": [ |
| { |
| "start": 95, |
| "end": 120, |
| "text": "(Klein and Manning, 2003)", |
| "ref_id": "BIBREF3" |
| }, |
| { |
| "start": 238, |
| "end": 261, |
| "text": "(Ronan and Jason, 2008)", |
| "ref_id": "BIBREF15" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Results", |
| "sec_num": "4" |
| }, |
| { |
| "text": "Our SemEval task provided the PIT-2015 Twitter Paraphrase corpus for training and system development (Wei Xu, 2014; Wei Xu et al., 2014; Wei Xu et al., 2015) . The corpus contains a training set with 13,063 sentence pairs, a development set with 4,727 sentence pairs, and a test set with 972 sentence pairs. in other work on paraphrasing in the following ways:", |
| "cite_spans": [ |
| { |
| "start": 106, |
| "end": 115, |
| "text": "Xu, 2014;", |
| "ref_id": "BIBREF23" |
| }, |
| { |
| "start": 116, |
| "end": 136, |
| "text": "Wei Xu et al., 2014;", |
| "ref_id": "BIBREF24" |
| }, |
| { |
| "start": 137, |
| "end": 157, |
| "text": "Wei Xu et al., 2015)", |
| "ref_id": "BIBREF25" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Data Set Details", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "(1) it contains sentences that are colloquial and opinionated;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Data Set Details", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "(2) it contains paraphrases that are lexically diverse; and (3) it contains many sentences that are lexically similar but semantically dissimilar (Wei Xu et al., 2015) . The training and development data was jointly collected from 500+ trending topics and then randomly split into the final training and development sets. The test data was drawn from 20 randomly sampled Twitter trending topics. Labels were collected by having each sentence pair annotated by 5 different crowdsourced workers.", |
| "cite_spans": [ |
| { |
| "start": 146, |
| "end": 167, |
| "text": "(Wei Xu et al., 2015)", |
| "ref_id": "BIBREF25" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Data Set Details", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "For the unsupervised unfolding RAE training, we experimented with using subsets of different sized Twitter corpora of 50,000, 80,000 and 95,000 sentences to evaluate the proposed system. Using PIT-2015, we trained using tweets from the training set and evaluated the resulting series of systems on the dev set (Wei Xu et al., 2015) . For supervised training, we used the training set from PIT-2015. For training the unsupervised unfolding RAE vectors, we collected additional data using the Twitter Developer API. As shown in Table 3 , we found that increasing the size of the data set used to train the RAE embeddings leads to strong gains in system performance. 1 Notice that as the amount of data used to train the RAE vectors increases, the preci-1 Due to time constraints we did not explore using more than 95,000 sentences to train our embedding model. sion value for paraphrase detection increases significantly while the recall value is actually falling. The official evaluation metrics for SemEval-2015 Task 1 are F1-score for paraphrase identification and Pearson correlation for the semantic similarity scores. The performance of our system on the shared task evaluation data using these metrics is presented in Table 4 .", |
| "cite_spans": [ |
| { |
| "start": 315, |
| "end": 331, |
| "text": "Xu et al., 2015)", |
| "ref_id": "BIBREF25" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 526, |
| "end": 533, |
| "text": "Table 3", |
| "ref_id": "TABREF3" |
| }, |
| { |
| "start": 1223, |
| "end": 1230, |
| "text": "Table 4", |
| "ref_id": "TABREF5" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation and Discussion", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "We participated in SemEval 2015 Task 1: Paraphrase and Semantic Similarity in Twitter using a system architecture motivated by the success of prior work on using RAE for paraphrase detection (Socher et al. 2011) . We find that the performance of the system receives a sizable boost with the addition of a moderate amount of unsupervised RAE training data.", |
| "cite_spans": [ |
| { |
| "start": 191, |
| "end": 211, |
| "text": "(Socher et al. 2011)", |
| "ref_id": "BIBREF14" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion and Future Work", |
| "sec_num": "5" |
| }, |
| { |
| "text": "In future work, we plan to try to improve performance by first normalizing the Twitter data prior to parsing. Given the mismatch between general domain English data and tweets, parse accuracy would have likely been improved by performing a preprocessing step that normalized the tweets prior to giving them to the parser (Juri Ganitkevitch et al., 2013; Brendan O Connor et al., 2010) . This could lead to improved downstream paraphrase detection and similarity scoring. We would also like to explore using new learning algorithms for the final paraphrase classification as well as alternative mechanisms of constructing the sentence level embedding vectors.", |
| "cite_spans": [ |
| { |
| "start": 327, |
| "end": 353, |
| "text": "Ganitkevitch et al., 2013;", |
| "ref_id": "BIBREF8" |
| }, |
| { |
| "start": 354, |
| "end": 384, |
| "text": "Brendan O Connor et al., 2010)", |
| "ref_id": "BIBREF1" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion and Future Work", |
| "sec_num": "5" |
| } |
| ], |
| "back_matter": [ |
| { |
| "text": "In this work, we would like to convey our sincere gratitude and special thanks towards Wei Xu, organizer of SemEval PIT 2015, who helped us in the training and development data set and to evaluate our system results. We would like again to convey our sincere gratitude towards Daniel Cer, who encouraged and motivated us throughout the final submission. And we would convey our sincere thanks to all the organizers of SemEval 2015.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Acknowledgments", |
| "sec_num": null |
| } |
| ], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "Unsupervised construction of large paraphrase corpora: Exploiting massively parallel news sources", |
| "authors": [ |
| { |
| "first": "Bill", |
| "middle": [], |
| "last": "Dolan", |
| "suffix": "" |
| }, |
| { |
| "first": "Chris", |
| "middle": [], |
| "last": "Quirk", |
| "suffix": "" |
| }, |
| { |
| "first": "Chris", |
| "middle": [], |
| "last": "Brockett", |
| "suffix": "" |
| } |
| ], |
| "year": 2004, |
| "venue": "Proceedings of the 20th international conference on Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Bill Dolan., Chris Quirk and Chris Brockett. 2004. Un- supervised construction of large paraphrase corpora: Exploiting massively parallel news sources. Proceed- ings of the 20th international conference on Computa- tional Linguistics (pp. 350).", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "TweetMotif: Exploratory Search and Topic Summarization for Twitter", |
| "authors": [ |
| { |
| "first": "Michel", |
| "middle": [], |
| "last": "Brendan O Connor", |
| "suffix": "" |
| }, |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Krieger", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Ahn", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Brendan O Connor., Michel Krieger and David Ahn. 2010. TweetMotif: Exploratory Search and Topic Summarization for Twitter.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Syntactic constraints on paraphrases extracted from parallel corpora", |
| "authors": [ |
| { |
| "first": "Chris Callison", |
| "middle": [], |
| "last": "Burch", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "196--205", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Chris Callison Burch. 2008. Syntactic constraints on paraphrases extracted from parallel corpora. Pro- ceedings of the Conference on Empirical Methods in Natural Language Processing (pp. 196-205).", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Accurate unlexicalized parsing", |
| "authors": [ |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher", |
| "middle": [ |
| "D" |
| ], |
| "last": "Manning", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "Proceedings of the 41st Annual Meeting on Association for Computational Linguistics", |
| "volume": "1", |
| "issue": "", |
| "pages": "423--430", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Dan Klein and Christopher D. Manning. 2003. Accu- rate unlexicalized parsing. Proceedings of the 41st Annual Meeting on Association for Computational Linguistics-Volume 1, pp. 423-430.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Coooolll: A Deep Learning System for Twitter Sentiment Classification", |
| "authors": [ |
| { |
| "first": "Duyu", |
| "middle": [], |
| "last": "Tang", |
| "suffix": "" |
| }, |
| { |
| "first": "Furu", |
| "middle": [], |
| "last": "Wei", |
| "suffix": "" |
| }, |
| { |
| "first": "Ting", |
| "middle": [], |
| "last": "Bing Qin", |
| "suffix": "" |
| }, |
| { |
| "first": "Ming", |
| "middle": [], |
| "last": "Liu", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Zhou", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the 8th International Workshop on Semantic Evaluation", |
| "volume": "", |
| "issue": "", |
| "pages": "208--212", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Duyu Tang., Furu Wei., Bing Qin., Ting Liu and Ming Zhou. 2014. Coooolll: A Deep Learning System for Twitter Sentiment Classification. Proceedings of the 8th International Workshop on Semantic Evaluation (SemEval-2014). (pp. 208-212).", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Paraphrase Detection Using Recursive Autoencoder", |
| "authors": [ |
| { |
| "first": "Eric", |
| "middle": [], |
| "last": "Huang", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Eric Huang 2011. Paraphrase Detection Using Recur- sive Autoencoder.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Explorations in sentence fusion", |
| "authors": [ |
| { |
| "first": "Erwin", |
| "middle": [], |
| "last": "Marsi", |
| "suffix": "" |
| }, |
| { |
| "first": "Emiel", |
| "middle": [], |
| "last": "Krahmer", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proceedings of the European Workshop on Natural Language Generation", |
| "volume": "", |
| "issue": "", |
| "pages": "109--117", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Erwin Marsi and Emiel Krahmer 2005. Explorations in sentence fusion. Proceedings of the European Work- shop on Natural Language Generation (pp. 109-117).", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Linguistic redundancy in twitter", |
| "authors": [ |
| { |
| "first": "Fabio", |
| "middle": [], |
| "last": "Massimo Zanzotto", |
| "suffix": "" |
| }, |
| { |
| "first": "Marco", |
| "middle": [], |
| "last": "Pennacchiotti", |
| "suffix": "" |
| }, |
| { |
| "first": "Kostas", |
| "middle": [], |
| "last": "Tsioutsiouliklis", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "659--669", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Fabio Massimo Zanzotto., Marco Pennacchiotti and Kostas Tsioutsiouliklis. 2011. Linguistic redundancy in twitter. In Proceedings of the Conference on Em- pirical Methods in Natural Language Processing (pp. 659-669).", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "PPDB: The Paraphrase Database", |
| "authors": [ |
| { |
| "first": "Juri", |
| "middle": [], |
| "last": "Ganitkevitch", |
| "suffix": "" |
| }, |
| { |
| "first": "Chris", |
| "middle": [], |
| "last": "Benjamin Van Durme", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Callison-Burch", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "HLT-NAACL", |
| "volume": "", |
| "issue": "", |
| "pages": "758--764", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Juri Ganitkevitch., Benjamin Van Durme and Chris Callison-Burch. 2013. PPDB: The Paraphrase Database. In HLT-NAACL (pp. 758-764).", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Twitter Part-of-Speech Tagging for All: Overcoming Sparse and Noisy Data", |
| "authors": [ |
| { |
| "first": "Leon", |
| "middle": [], |
| "last": "Derczynski", |
| "suffix": "" |
| }, |
| { |
| "first": "Alan", |
| "middle": [], |
| "last": "Ritter", |
| "suffix": "" |
| }, |
| { |
| "first": "Sam", |
| "middle": [], |
| "last": "Clark", |
| "suffix": "" |
| }, |
| { |
| "first": "Kalina", |
| "middle": [], |
| "last": "Bontcheva", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "RANLP", |
| "volume": "", |
| "issue": "", |
| "pages": "198--206", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Leon Derczynski., Alan Ritter., Sam Clark and Kalina Bontcheva. 2013. Twitter Part-of-Speech Tagging for All: Overcoming Sparse and Noisy Data. In RANLP (pp. 198-206).", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "Microsoft research paraphrase corpus", |
| "authors": [], |
| "year": 2014, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Microsoft research paraphrase corpus. Accessed on September-2014. http://research.microsoft.com/en- us/.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Generating phrasal and sentential paraphrases: A survey of datadriven methods", |
| "authors": [ |
| { |
| "first": "Nitin", |
| "middle": [], |
| "last": "Madnan", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Bonnie", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Dorr", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Computational Linguistics", |
| "volume": "36", |
| "issue": "3", |
| "pages": "341--387", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Nitin Madnan and Bonnie J. Dorr. 2010. Generating phrasal and sentential paraphrases: A survey of data- driven methods. Computational Linguistics, 36(3), (pp. 341-387).", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Meter: Measuring text reuse", |
| "authors": [ |
| { |
| "first": "Paul", |
| "middle": [], |
| "last": "Clough", |
| "suffix": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Gaizauskas", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [ |
| "L" |
| ], |
| "last": "Scott", |
| "suffix": "" |
| }, |
| { |
| "first": "Yorick", |
| "middle": [], |
| "last": "Piao", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Wilks", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proceedings of the 40th Annual Meeting on Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "152--159", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Paul Clough., Robert Gaizauskas., Scott SL Piao and Yorick Wilks. 2002. Meter: Measuring text reuse. Proceedings of the 40th Annual Meeting on Associa- tion for Computational Linguistics (pp. 152-159).", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Paraphrase Identification using Semantic Heuristic Features. Research", |
| "authors": [ |
| { |
| "first": "Zia", |
| "middle": [], |
| "last": "Qayyum Ul", |
| "suffix": "" |
| }, |
| { |
| "first": "Altaf", |
| "middle": [], |
| "last": "Wasif", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Journal of Applied Sciences, Engineering and Technology", |
| "volume": "4", |
| "issue": "22", |
| "pages": "4894--4904", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Qayyum Ul Zia and Altaf Wasif. 2012. Paraphrase Identification using Semantic Heuristic Features. Re- search Journal of Applied Sciences, Engineering and Technology 4(22): 4894-4904.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Dynamic pooling and unfolding recursive autoencoders for paraphrase detection", |
| "authors": [ |
| { |
| "first": "Richard", |
| "middle": [], |
| "last": "Socher", |
| "suffix": "" |
| }, |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Eric", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Huang", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Jeffrey Pennin", |
| "suffix": "" |
| }, |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Christopher", |
| "suffix": "" |
| }, |
| { |
| "first": "Andrew", |
| "middle": [ |
| "Y" |
| ], |
| "last": "Manning", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Ng", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Advances in Neural Information Processing Systems", |
| "volume": "", |
| "issue": "", |
| "pages": "801--809", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Richard Socher., Eric H. Huang., Jeffrey Pennin., Christopher D. Manning and Andrew Y. Ng. 2011. Dynamic pooling and unfolding recursive autoen- coders for paraphrase detection. Advances in Neural Information Processing Systems (pp. 801-809).", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "A unified architecture for natural language processing: Deep neural networks with multitask learning", |
| "authors": [ |
| { |
| "first": "Ronan", |
| "middle": [], |
| "last": "Collobert", |
| "suffix": "" |
| }, |
| { |
| "first": "Jason", |
| "middle": [], |
| "last": "Weston", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Proceedings of the 25th international conference on Machine learning", |
| "volume": "", |
| "issue": "", |
| "pages": "160--167", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ronan Collobert and Jason Weston. 2008. A unified ar- chitecture for natural language processing: Deep neu- ral networks with multitask learning. Proceedings of the 25th international conference on Machine learning (pp. 160-167).", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "A semantic similarity approach to paraphrase detection", |
| "authors": [ |
| { |
| "first": "Samuel", |
| "middle": [], |
| "last": "Fernando", |
| "suffix": "" |
| }, |
| { |
| "first": "Mark", |
| "middle": [], |
| "last": "Stevenson", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Computational Linguistics UK (CLUK 2008) 11th Annual Research Colloquium", |
| "volume": "", |
| "issue": "", |
| "pages": "45--52", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Samuel Fernando and Mark Stevenson. 2008. A seman- tic similarity approach to paraphrase detection. Com- putational Linguistics UK (CLUK 2008) 11th Annual Research Colloquium (pp. 45-52).", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Using paraphrases for improving first story detection in news and Twitter", |
| "authors": [ |
| { |
| "first": "Sasa", |
| "middle": [], |
| "last": "Petrovic", |
| "suffix": "" |
| }, |
| { |
| "first": "Miles", |
| "middle": [], |
| "last": "Osborne", |
| "suffix": "" |
| }, |
| { |
| "first": "Victor", |
| "middle": [], |
| "last": "Lavrenko", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of the 2012 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies", |
| "volume": "", |
| "issue": "", |
| "pages": "338--346", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Sasa Petrovic., Miles Osborne and Victor Lavrenko. 2012. Using paraphrases for improving first story de- tection in news and Twitter. Proceedings of the 2012 Conference of the North American Chapter of the As- sociation for Computational Linguistics: Human Lan- guage Technologies (pp. 338-346).", |
| "links": null |
| }, |
| "BIBREF18": { |
| "ref_id": "b18", |
| "title": "Paraphrasing 4 Microblog Normalization", |
| "authors": [ |
| { |
| "first": "Wang", |
| "middle": [], |
| "last": "Ling", |
| "suffix": "" |
| }, |
| { |
| "first": "Chris", |
| "middle": [], |
| "last": "Dyer", |
| "suffix": "" |
| }, |
| { |
| "first": "Alan", |
| "middle": [ |
| "W" |
| ], |
| "last": "Black", |
| "suffix": "" |
| }, |
| { |
| "first": "Isabel", |
| "middle": [], |
| "last": "Trancoso", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "EMNLP", |
| "volume": "", |
| "issue": "", |
| "pages": "73--84", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Wang Ling., Chris Dyer., Alan W. Black and Isabel Tran- coso. 2013. Paraphrasing 4 Microblog Normaliza- tion. In EMNLP (pp. 73-84).", |
| "links": null |
| }, |
| "BIBREF19": { |
| "ref_id": "b19", |
| "title": "Paraphrase detection on SMS messages in automobiles", |
| "authors": [ |
| { |
| "first": "Wei", |
| "middle": [], |
| "last": "Wu", |
| "suffix": "" |
| }, |
| { |
| "first": "Xiao", |
| "middle": [], |
| "last": "Yun-Cheng Ju", |
| "suffix": "" |
| }, |
| { |
| "first": "Ye-Yi", |
| "middle": [], |
| "last": "Li", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Wang", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Acoustics Speech and Signal Processing (ICASSP), 2010 IEEE International Conference on", |
| "volume": "", |
| "issue": "", |
| "pages": "5326--5329", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Wei Wu., Yun-Cheng Ju., Xiao Li and Ye-Yi Wang. 2010. Paraphrase detection on SMS messages in au- tomobiles. In Acoustics Speech and Signal Process- ing (ICASSP), 2010 IEEE International Conference on (pp. 5326-5329).", |
| "links": null |
| }, |
| "BIBREF20": { |
| "ref_id": "b20", |
| "title": "Paraphrasing for Style. Proceedings of COLING 2012:Technical paper", |
| "authors": [ |
| { |
| "first": "Wei", |
| "middle": [], |
| "last": "Xu", |
| "suffix": "" |
| }, |
| { |
| "first": "Alan", |
| "middle": [], |
| "last": "Ritter", |
| "suffix": "" |
| }, |
| { |
| "first": "Ralph", |
| "middle": [], |
| "last": "Bill Dolan", |
| "suffix": "" |
| }, |
| { |
| "first": "Colin", |
| "middle": [], |
| "last": "Grishman", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Cherry", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "2899--2914", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Wei Xu., Alan Ritter., Bill Dolan., Ralph Grishman and Colin Cherry. 2012. Paraphrasing for Style. Proceed- ings of COLING 2012:Technical paper, pages 2899- 2914, Coling 2012, Mumbai, December 2012.", |
| "links": null |
| }, |
| "BIBREF21": { |
| "ref_id": "b21", |
| "title": "Gathering and generating paraphrases from twitter with application to normalization", |
| "authors": [ |
| { |
| "first": "Wei", |
| "middle": [], |
| "last": "Xu", |
| "suffix": "" |
| }, |
| { |
| "first": "Alan", |
| "middle": [], |
| "last": "Ritter", |
| "suffix": "" |
| }, |
| { |
| "first": "Ralph", |
| "middle": [], |
| "last": "Grishmann", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Proceedings of the Sixth Workshop on Building and Using Comparable Corpora", |
| "volume": "", |
| "issue": "", |
| "pages": "121--128", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Wei Xu., Alan Ritter and Ralph Grishmann. 2013. Gath- ering and generating paraphrases from twitter with application to normalization. Proceedings of the Sixth Workshop on Building and Using Comparable Cor- pora (pp. 121-128).", |
| "links": null |
| }, |
| "BIBREF22": { |
| "ref_id": "b22", |
| "title": "A Preliminary Study of Tweet Summarization using Information Extraction", |
| "authors": [ |
| { |
| "first": "Wei", |
| "middle": [], |
| "last": "Xu", |
| "suffix": "" |
| }, |
| { |
| "first": "Ralph", |
| "middle": [], |
| "last": "Grishman", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Wei Xu., Ralph Grishman., Adam Meyers and Alan Rit- ter. 2013. A Preliminary Study of Tweet Summariza- tion using Information Extraction.", |
| "links": null |
| }, |
| "BIBREF23": { |
| "ref_id": "b23", |
| "title": "Data-driven approaches for paraphrasing across language variations (Doctoral dissertation", |
| "authors": [ |
| { |
| "first": "Wei", |
| "middle": [], |
| "last": "Xu", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Wei Xu 2014. Data-driven approaches for paraphras- ing across language variations (Doctoral dissertation, New York University).", |
| "links": null |
| }, |
| "BIBREF24": { |
| "ref_id": "b24", |
| "title": "Extracting Lexically Divergent Paraphrases from Twitter. Transactions Of The Association For Computational Linguistics", |
| "authors": [ |
| { |
| "first": "Wei", |
| "middle": [], |
| "last": "Xu", |
| "suffix": "" |
| }, |
| { |
| "first": "Alan", |
| "middle": [], |
| "last": "Ritter", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Chris Callison Burch", |
| "suffix": "" |
| }, |
| { |
| "first": "B", |
| "middle": [], |
| "last": "William", |
| "suffix": "" |
| }, |
| { |
| "first": "Yangfeng", |
| "middle": [], |
| "last": "Dolan", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Ji", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "", |
| "volume": "2", |
| "issue": "", |
| "pages": "435--448", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Wei Xu., Alan Ritter., Chris Callison Burch., William B. Dolan and Yangfeng Ji. 2014. Extracting Lex- ically Divergent Paraphrases from Twitter. Transac- tions Of The Association For Computational Linguis- tics, 2, 435-448.", |
| "links": null |
| }, |
| "BIBREF25": { |
| "ref_id": "b25", |
| "title": "Paraphrase and Semantic Similarity in Twitter (PIT2015). International Workshop on Semantic Evaluation", |
| "authors": [ |
| { |
| "first": "Wei", |
| "middle": [], |
| "last": "Xu", |
| "suffix": "" |
| }, |
| { |
| "first": "Callison", |
| "middle": [], |
| "last": "Chris", |
| "suffix": "" |
| }, |
| { |
| "first": "William", |
| "middle": [ |
| "B" |
| ], |
| "last": "Burch", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Dolan", |
| "suffix": "" |
| } |
| ], |
| "year": 2015, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Wei Xu., Chris Callison Burch and William B. Dolan. 2015. Paraphrase and Semantic Similarity in Twitter (PIT2015). International Workshop on Semantic Eval- uation (SemEval 2015).", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "text": "System architecture:", |
| "type_str": "figure", |
| "num": null, |
| "uris": null |
| }, |
| "FIGREF1": { |
| "text": "Dynamic pooling: The original variable sized matrix is partitioned into an n p \u00d7 n p grid of blocks of approximately equivalent size. We use min-pooling as the aggregation operation, whereby the values of the cells in the fixed size n p \u00d7 n p matrix are assigned to the minimum value of the corresponding partition in the original matrix.", |
| "type_str": "figure", |
| "num": null, |
| "uris": null |
| }, |
| "FIGREF2": { |
| "text": "Architecture of unfolding RAEs. Using unfolding RAEs, the embedding vector associated with each node in a parse tree is trained to reconstruct the whole parse tree fragment rooted at the current node.", |
| "type_str": "figure", |
| "num": null, |
| "uris": null |
| }, |
| "TABREF0": { |
| "text": "Sample tweets from SemEval 2015 Twitter Paraphrase Corpus.", |
| "type_str": "table", |
| "num": null, |
| "content": "<table/>", |
| "html": null |
| }, |
| "TABREF1": { |
| "text": "shows the label distribution statistics for this corpus. This data set is distinct from the data used", |
| "type_str": "table", |
| "num": null, |
| "content": "<table><tr><td>Category</td><td>Paraphrase</td><td>Non-Paraphrase</td><td>Debatable</td><td>Total</td></tr><tr><td/><td>Sentence pair</td><td>Sentence pair</td><td>Sentence pair</td><td/></tr><tr><td>Training</td><td>3,996</td><td>7,534</td><td>1,533</td><td>13,063</td></tr><tr><td colspan=\"2\">Development 1,470</td><td>2,672</td><td>585</td><td>4,727</td></tr><tr><td>Testing</td><td>175</td><td>663</td><td>134</td><td>972</td></tr></table>", |
| "html": null |
| }, |
| "TABREF2": { |
| "text": "Statistics of PIT-2015 Twitter Paraphrase Corpus.", |
| "type_str": "table", |
| "num": null, |
| "content": "<table><tr><td colspan=\"2\">Twitter Training</td><td>Testing/</td><td colspan=\"2\">Precision Recall</td><td>F1</td></tr><tr><td>Corpus</td><td/><td>Development</td><td/><td/><td>Measure</td></tr><tr><td>50,000</td><td>13,063</td><td>4,727</td><td>0.51</td><td>0.48</td><td>0.49</td></tr><tr><td>80,000</td><td>13,063</td><td>4,727</td><td>0.65</td><td>0.37</td><td>0.51</td></tr><tr><td>95,000</td><td>13,063</td><td>4,727</td><td>0.77</td><td>0.35</td><td>0.56</td></tr></table>", |
| "html": null |
| }, |
| "TABREF3": { |
| "text": "PIT-2015 dev set performance using varying amounts of training data.", |
| "type_str": "table", |
| "num": null, |
| "content": "<table/>", |
| "html": null |
| }, |
| "TABREF5": { |
| "text": "Results from the SemEval-2015.", |
| "type_str": "table", |
| "num": null, |
| "content": "<table/>", |
| "html": null |
| } |
| } |
| } |
| } |