Estimating Sentence Semantic Similarity Using N-Gram Regression Models and Web Snippets

Total Page:16

File Type:pdf, Size:1020Kb

Estimating Sentence Semantic Similarity Using N-Gram Regression Models and Web Snippets DeepPurple: Estimating Sentence Semantic Similarity using N-gram Regression Models and Web Snippets Nikos Malandrakis, Elias Iosif, Alexandros Potamianos Department of ECE, Technical University of Crete, 73100 Chania, Greece [nmalandrakis,iosife,potam]@telecom.tuc.gr Abstract on word-level semantic similarity estimation to de- sign and implement a system for sentence-level STS We estimate the semantic similarity between for Task6 of the SemEval’12 campaign. two sentences using regression models with Semantic similarity between words can be re- features: 1) n-gram hit rates (lexical matches) garded as the graded semantic equivalence at the between sentences, 2) lexical semantic sim- ilarity between non-matching words, and 3) lexeme level and is tightly related with the tasks of sentence length. Lexical semantic similarity is word sense discovery and disambiguation (Agirre computed via co-occurrence counts on a cor- and Edmonds, 2007). Metrics of word semantic sim- pus harvested from the web using a modified ilarity can be divided into: (i) knowledge-based met- mutual information metric. State-of-the-art re- rics (Miller, 1990; Budanitsky and Hirst, 2006) and sults are obtained for semantic similarity com- (ii) corpus-based metrics (Baroni and Lenci, 2010; putation at the word level, however, the fusion Iosif and Potamianos, 2010). of this information at the sentence level pro- vides only moderate improvement on Task 6 When more complex structures, such as phrases of SemEval’12. Despite the simple features and sentences, are considered, it is much harder used, regression models provide good perfor- to estimate semantic equivalence due to the non- mance, especially for shorter sentences, reach- compositional nature of sentence-level semantics ing correlationof 0.62 on the SemEval test set. and the exponential explosion of possible interpre- tations. STS is closely related to the problems of paraphrasing, which is bidirectional and based on 1 Introduction semantic equivalence (Madnani and Dorr, 2010) and Recently, there has been significant research activ- textual entailment, which is directional and based ity on the area of semantic similarity estimation on relations between semantics (Dagan et al., 2006). motivated both by abundance of relevant web data Related methods incorporate measurements of sim- and linguistic resources for this task. Algorithms ilarity at various levels: lexical (Malakasiotis and for computing semantic textual similarity (STS) are Androutsopoulos, 2007), syntactic (Malakasiotis, relevant for a variety of applications, including in- 2009; Zanzotto et al., 2009), and semantic (Rinaldi formation extraction (Szpektor and Dagan, 2008), et al., 2003; Bos and Markert, 2005). Measures question answering (Harabagiu and Hickl, 2006) from machine translation evaluation are often used and machine translation (Mirkin et al., 2009). Word- to evaluate lexical level approaches (Finch et al., or term-level STS (a special case of sentence level 2005; Perez and Alfonseca, 2005), including BLEU STS) has also been successfully applied to the prob- (Papineni et al., 2002), a metric based on word n- lem of grammar induction (Meng and Siu, 2002) gram hit rates. and affective text categorization (Malandrakis et al., Motivated by BLEU, we use n-gram hit rates and 2011). In this work, we built on previous research word-level semantic similarity scores as features in 565 First Joint Conference on Lexical and Computational Semantics (*SEM), pages 565–570, Montreal,´ Canada, June 7-8, 2012. c 2012 Association for Computational Linguistics a linear regression model to estimate sentence level ated above) can significantly reduce the semantic semantic similarity. We also propose sigmoid scal- similarity estimation error of the mutual information ing of similarity scores and sentence-length depen- metric I(i, j). This is also experimentally verified in dent modeling. The models are evaluated on the Se- (Iosif and Potamianos, 2012c). mEval’12 sentence similarity task. In addition, one can modify the mutual informa- tion metric to further reduce estimation error (for 2 Semantic similarity between words the theoretical foundation behind this see (Iosif and In this section, two different metrics of word simi- Potamianos, 2012a)). Specifically, one may intro- α larity are presented. The first is a language-agnostic, duce exponential weights in order to reduce the p i p j corpus-based metric requiring no knowledge re- contribution of ( ) and ( ) in the similarity met- ric. The modified metric I i, j , is defined as: sources, while the second metric relies on WordNet. a( ) Corpus-based metric: Given a corpus, the se- 1 pˆ(i, j) pˆ(i, j) Ia(i, j)= log + log . (1) mantic similarity between two words, wi and wj, 2 pˆα(i)ˆp(j) pˆ(i)ˆpα(j) is estimated as their pointwise mutual information The weight α was estimated on the corpus of (Iosif I i, j pˆ(i,j) (Church and Hanks, 1990): ( ) = log pˆ(i)ˆp(j) , and Potamianos, 2012b) in order to maximize word where pˆ(i) and pˆ(j) are the occurrence probabili- sense coverage in the semantic neighborhood of ties of wi and wj, respectively, while the probability each word. The Ia(i, j) metric using the estimated of their co-occurrence is denoted by pˆ(i, j). These value of α = 0.8 was shown to significantly out- probabilities are computed according to maximum perform I(i, j) and to achieve state-of-the-art results likelihood estimation. The assumption of this met- on standard semantic similarity datasets (Rubenstein ric is that co-occurrence implies semantic similarity. and Goodenough, 1965; Miller and Charles, 1998; During the past decade the web has been used for Finkelstein et al., 2002). For more details see (Iosif estimating the required probabilities (Turney, 2001; and Potamianos, 2012a). Bollegala et al., 2007), by querying web search en- WordNet-based metrics: For comparison pur- gines and retrieving the number of hits required poses, we evaluated various similarity metrics on to estimate the frequency of individual words and the task of word similarity computation on three their co-occurrence. However, these approaches standard datasets (same as above). The best re- have failed to obtain state-of-the-art results (Bolle- sults were obtained by the Vector metric (Patward- gala et al., 2007), unless “expensive” conjunctive han and Pedersen, 2006), which exploits the lexical AND queries are used for harvesting a corpus and information that is included in the WordNet glosses. then using this corpus to estimate similarity scores This metric was incorporated to our proposed ap- (Iosif and Potamianos, 2010). proach. All metrics were computed using the Word- 1 Recently, a scalable approach for harvesting a Net::Similarity module (Pedersen, 2005). corpus has been proposed where web snippets are downloaded using individual queries for each word 3 N-gram Regression Models (Iosif and Potamianos, 2012b). Semantic similar- Inspired by BLEU (Papineni et al., 2002), we pro- ity can then be estimated using the I(i, j) metric pose a simple regression model that combines evi- and within-snippet word co-occurrence frequencies. dence from two sources: number of n-gram matches Under the maximum sense similarity assumption and degree of similarity between non-matching (Resnik, 1995), it is relatively easy to show that a words between two sentences. In order to incorpo- (more) lexically-balanced corpus2 (as the one cre- rate a word semantic similarity metric into BLEU, 1The scalability of this approach has been demonstrated in we apply the following two-pass process: first lexi- (Iosif and Potamianos, 2012b) for a 10K vocabulary, here we cal hits are identified and counted, and then the se- extend it to the full 60K WordNet vocabulary. mantic similarity between n-grams not matched dur- 2According to this assumption the semantic similarity of two words can be estimated as the minimum pairwise similarity of respond to all senses, i.e., the denominator of I(i, j) is overes- their senses. The gist of the argument is that although words timated causing large underestimation error for similarities be- often co-occur with their closest senses, word occurrences cor- tween polysemous words. 566 ing the first pass is estimated. All word similar- length for each sentence pair, in words) acts as a ity metrics used are peak-to-peak normalized in the scaling factor for the linearly estimated similarity. [0,1] range, so they serve as a “degree-of-match”. The hierarchical fusion scheme is actually a col- The semantic similarity scores from word pairs are lection of (overlapping) linear regression models, summed together (just like n-gram hits) to obtain each matching a range of sentence lengths. For ex- a BLEU-like semantic similarity score. The main ample, the first model DL1 is trained with sentences problem here is one of alignment, since we need with length up to l1, i.e., l ≤ l1, the second model to compare each non-matched n-gram from the hy- DL2 up to length l2 etc. During testing, sentences pothesis with an n-gram from the reference. We with length l ∈ [1, l1] are decoded with DL1, sen- use a simple approach: we iterate on the hypoth- tences with length l ∈ (l1, l2] with model DL2 etc. esis n-grams, left-to-right, and compare each with Each of these partial models is a linear fusion model the most similar non-matched n-gram in the refer- as shown in (2). In this work, we use four models ence. This modification to BLEU is only applied with l1 = 10, l2 = 20, l3 = 30, l4 = ∞. to 1-grams, since semantic similarity scores for bi- grams (or higher) were not available. 4 Experimental Procedure and Results Thus, our list of features are the hit rates obtained by BLEU (for 1-, 2-, 3-, 4-grams) and the total se- Initially all sentences are pre-processed by the mantic similarity (SS) score for 1-grams3.
Recommended publications
  • Combining Semantic and Lexical Measures to Evaluate Medical Terms Similarity?
    Combining semantic and lexical measures to evaluate medical terms similarity? Silvio Domingos Cardoso1;2, Marcos Da Silveira1, Ying-Chi Lin3, Victor Christen3, Erhard Rahm3, Chantal Reynaud-Dela^ıtre2, and C´edricPruski1 1 LIST, Luxembourg Institute of Science and Technology, Luxembourg fsilvio.cardoso,marcos.dasilveira,[email protected] 2 LRI, University of Paris-Sud XI, France [email protected] 3 Department of Computer Science, Universit¨atLeipzig, Germany flin,christen,[email protected] Abstract. The use of similarity measures in various domains is corner- stone for different tasks ranging from ontology alignment to information retrieval. To this end, existing metrics can be classified into several cate- gories among which lexical and semantic families of similarity measures predominate but have rarely been combined to complete the aforemen- tioned tasks. In this paper, we propose an original approach combining lexical and ontology-based semantic similarity measures to improve the evaluation of terms relatedness. We validate our approach through a set of experiments based on a corpus of reference constructed by domain experts of the medical field and further evaluate the impact of ontology evolution on the used semantic similarity measures. Keywords: Similarity measures · Ontology evolution · Semantic Web · Medical terminologies 1 Introduction Measuring the similarity between terms is at the heart of many research inves- tigations. In ontology matching, similarity measures are used to evaluate the relatedness between concepts from different ontologies [9]. The outcomes are the mappings between the ontologies, increasing the coverage of domain knowledge and optimize semantic interoperability between information systems. In informa- tion retrieval, similarity measures are used to evaluate the relatedness between units of language (e.g., words, sentences, documents) to optimize search [39].
    [Show full text]
  • Evaluating Lexical Similarity to Build Sentiment Similarity
    Evaluating Lexical Similarity to Build Sentiment Similarity Grégoire Jadi∗, Vincent Claveauy, Béatrice Daille∗, Laura Monceaux-Cachard∗ ∗ LINA - Univ. Nantes {gregoire.jadi beatrice.daille laura.monceaux}@univ-nantes.fr y IRISA–CNRS, France [email protected] Abstract In this article, we propose to evaluate the lexical similarity information provided by word representations against several opinion resources using traditional Information Retrieval tools. Word representation have been used to build and to extend opinion resources such as lexicon, and ontology and their performance have been evaluated on sentiment analysis tasks. We question this method by measuring the correlation between the sentiment proximity provided by opinion resources and the semantic similarity provided by word representations using different correlation coefficients. We also compare the neighbors found in word representations and list of similar opinion words. Our results show that the proximity of words in state-of-the-art word representations is not very effective to build sentiment similarity. Keywords: opinion lexicon evaluation, sentiment analysis, spectral representation, word embedding 1. Introduction tend or build sentiment lexicons. For example, (Toh and The goal of opinion mining or sentiment analysis is to iden- Wang, 2014) uses the syntactic categories from WordNet tify and classify texts according to the opinion, sentiment or as features for a CRF to extract aspects and WordNet re- emotion that they convey. It requires a good knowledge of lations such as antonymy and synonymy to extend an ex- the sentiment properties of each word. This properties can isting opinion lexicons. Similarly, (Agarwal et al., 2011) be either discovered automatically by machine learning al- look for synonyms in WordNet to find the polarity of words gorithms, or embedded into language resources.
    [Show full text]
  • Using Prior Knowledge to Guide BERT's Attention in Semantic
    Using Prior Knowledge to Guide BERT’s Attention in Semantic Textual Matching Tasks Tingyu Xia Yue Wang School of Artificial Intelligence, Jilin University School of Information and Library Science Key Laboratory of Symbolic Computation and Knowledge University of North Carolina at Chapel Hill Engineering, Jilin University [email protected] [email protected] Yuan Tian∗ Yi Chang∗ School of Artificial Intelligence, Jilin University School of Artificial Intelligence, Jilin University Key Laboratory of Symbolic Computation and Knowledge International Center of Future Science, Jilin University Engineering, Jilin University Key Laboratory of Symbolic Computation and Knowledge [email protected] Engineering, Jilin University [email protected] ABSTRACT 1 INTRODUCTION We study the problem of incorporating prior knowledge into a deep Measuring semantic similarity between two pieces of text is a fun- Transformer-based model, i.e., Bidirectional Encoder Representa- damental and important task in natural language understanding. tions from Transformers (BERT), to enhance its performance on Early works on this task often leverage knowledge resources such semantic textual matching tasks. By probing and analyzing what as WordNet [28] and UMLS [2] as these resources contain well- BERT has already known when solving this task, we obtain better defined types and relations between words and concepts. Recent understanding of what task-specific knowledge BERT needs the works have shown that deep learning models are more effective most and where it is most needed. The analysis further motivates on this task by learning linguistic knowledge from large-scale text us to take a different approach than most existing works. Instead of data and representing text (words and sentences) as continuous using prior knowledge to create a new training task for fine-tuning trainable embedding vectors [10, 17].
    [Show full text]
  • Latent Semantic Analysis for Text-Based Research
    Behavior Research Methods, Instruments, & Computers 1996, 28 (2), 197-202 ANALYSIS OF SEMANTIC AND CLINICAL DATA Chaired by Matthew S. McGlone, Lafayette College Latent semantic analysis for text-based research PETER W. FOLTZ New Mexico State University, Las Cruces, New Mexico Latent semantic analysis (LSA) is a statistical model of word usage that permits comparisons of se­ mantic similarity between pieces of textual information. This papersummarizes three experiments that illustrate how LSA may be used in text-based research. Two experiments describe methods for ana­ lyzinga subject's essay for determining from what text a subject learned the information and for grad­ ing the quality of information cited in the essay. The third experiment describes using LSAto measure the coherence and comprehensibility of texts. One of the primary goals in text-comprehension re­ A theoretical approach to studying text comprehen­ search is to understand what factors influence a reader's sion has been to develop cognitive models ofthe reader's ability to extract and retain information from textual ma­ representation ofthe text (e.g., Kintsch, 1988; van Dijk terial. The typical approach in text-comprehension re­ & Kintsch, 1983). In such a model, semantic information search is to have subjects read textual material and then from both the text and the reader's summary are repre­ have them produce some form of summary, such as an­ sented as sets ofsemantic components called propositions. swering questions or writing an essay. This summary per­ Typically, each clause in a text is represented by a single mits the experimenter to determine what information the proposition.
    [Show full text]
  • Ying Liu, Xi Yang
    Liu, Y. & Yang, X. (2018). A similar legal case retrieval Liu & Yang system by multiple speech question and answer. In Proceedings of The 18th International Conference on Electronic Business (pp. 72-81). ICEB, Guilin, China, December 2-6. A Similar Legal Case Retrieval System by Multiple Speech Question and Answer (Full paper) Ying Liu, School of Computer Science and Information Engineering, Guangxi Normal University, China, [email protected] Xi Yang*, School of Computer Science and Information Engineering, Guangxi Normal University, China, [email protected] ABSTRACT In real life, on the one hand people often lack legal knowledge and legal awareness; on the other hand lawyers are busy, time- consuming, and expensive. As a result, a series of legal consultation problems cannot be properly handled. Although some legal robots can answer some problems about basic legal knowledge that are matched by keywords, they cannot do similar case retrieval and sentencing prediction according to the criminal facts described in natural language. To overcome the difficulty, we propose a similar case retrieval system based on natural language understanding. The system uses online speech synthesis of IFLYTEK and speech reading and writing technology, integrates natural language semantic processing technology and multiple rounds of question-and-answer dialogue mechanism to realise the legal knowledge question and answer with the memory-based context processing ability, and finally retrieves a case that is most similar to the criminal facts that the user consulted. After trial use, the system has a good level of human-computer interaction and high accuracy of information retrieval, which can largely satisfy people's consulting needs for legal issues.
    [Show full text]
  • Untangling Semantic Similarity: Modeling Lexical Processing Experiments with Distributional Semantic Models
    Untangling Semantic Similarity: Modeling Lexical Processing Experiments with Distributional Semantic Models. Farhan Samir Barend Beekhuizen Suzanne Stevenson Department of Computer Science Department of Language Studies Department of Computer Science University of Toronto University of Toronto, Mississauga University of Toronto ([email protected]) ([email protected]) ([email protected]) Abstract DSMs thought to instantiate one but not the other kind of sim- Distributional semantic models (DSMs) are substantially var- ilarity have been found to explain different priming effects on ied in the types of semantic similarity that they output. Despite an aggregate level (as opposed to an item level). this high variance, the different types of similarity are often The underlying conception of semantic versus associative conflated as a monolithic concept in models of behavioural data. We apply the insight that word2vec’s representations similarity, however, has been disputed (Ettinger & Linzen, can be used for capturing both paradigmatic similarity (sub- 2016; McRae et al., 2012), as has one of the main ways in stitutability) and syntagmatic similarity (co-occurrence) to two which it is operationalized (Gunther¨ et al., 2016). In this pa- sets of experimental findings (semantic priming and the effect of semantic neighbourhood density) that have previously been per, we instead follow another distinction, based on distri- modeled with monolithic conceptions of DSM-based seman- butional properties (e.g. Schutze¨ & Pedersen, 1993), namely, tic similarity. Using paradigmatic and syntagmatic similarity that between syntagmatically related words (words that oc- based on word2vec, we show that for some tasks and types of items the two types of similarity play complementary ex- cur in each other’s near proximity, such as drink–coffee), planatory roles, whereas for others, only syntagmatic similar- and paradigmatically related words (words that can be sub- ity seems to matter.
    [Show full text]
  • Measuring Semantic Similarity of Words Using Concept Networks
    Measuring semantic similarity of words using concept networks Gabor´ Recski Eszter Iklodi´ Research Institute for Linguistics Dept of Automation and Applied Informatics Hungarian Academy of Sciences Budapest U of Technology and Economics H-1068 Budapest, Benczur´ u. 33 H-1117 Budapest, Magyar tudosok´ krt. 2 [email protected] [email protected] Katalin Pajkossy Andras´ Kornai Department of Algebra Institute for Computer Science Budapest U of Technology and Economics Hungarian Academy of Sciences H-1111 Budapest, Egry J. u. 1 H-1111 Budapest, Kende u. 13-17 [email protected] [email protected] Abstract using word embeddings and WordNet. In Sec- tion 3 we briefly introduce the 4lang resources We present a state-of-the-art algorithm and the formalism it uses for encoding the mean- for measuring the semantic similarity of ing of words as directed graphs of concepts, then word pairs using novel combinations of document our efforts to develop novel 4lang- word embeddings, WordNet, and the con- based similarity features. Besides improving the cept dictionary 4lang. We evaluate our performance of existing systems for measuring system on the SimLex-999 benchmark word similarity, the goal of the present project is to data. Our top score of 0.76 is higher than examine the potential of 4lang representations in any published system that we are aware of, representing non-trivial lexical relationships that well beyond the average inter-annotator are beyond the scope of word embeddings and agreement of 0.67, and close to the 0.78 standard linguistic ontologies. average correlation between a human rater Section 4 presents our results and pro- and the average of all other ratings, sug- vides rough error analysis.
    [Show full text]
  • Semantic Similarity Between Sentences
    International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 01 | Jan -2017 www.irjet.net p-ISSN: 2395-0072 SEMANTIC SIMILARITY BETWEEN SENTENCES PANTULKAR SRAVANTHI1, DR. B. SRINIVASU2 1M.tech Scholar Dept. of Computer Science and Engineering, Stanley College of Engineering and Technology for Women, Telangana- Hyderabad, India 2Associate Professor - Dept. of Computer Science and Engineering, Stanley College of Engineering and Technology for Women, Telangana- Hyderabad, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The task of measuring sentence similarity is [1].Sentence similarity is one of the core elements of Natural defined as determining how similar the meanings of two Language Processing (NLP) tasks such as Recognizing sentences are. Computing sentence similarity is not a trivial Textual Entailment (RTE)[2] and Paraphrase Recognition[3]. task, due to the variability of natural language - expressions. Given two sentences, the task of measuring sentence Measuring semantic similarity of sentences is closely related to similarity is defined as determining how similar the meaning semantic similarity between words. It makes a relationship of two sentences is. The higher the score, the more similar between a word and the sentence through their meanings. The the meaning of the two sentences. WordNet and similarity intention is to enhance the concepts of semantics over the measures play an important role in sentence level similarity syntactic measures that are able to categorize the pair of than document level[4]. sentences effectively. Semantic similarity plays a vital role in Natural language processing, Informational Retrieval, Text 1.1 Problem Description Mining, Q & A systems, text-related research and application area.
    [Show full text]
  • Semantic Sentence Similarity: Size Does Not Always Matter
    INTERSPEECH 2021 30 August – 3 September, 2021, Brno, Czechia Semantic sentence similarity: size does not always matter Danny Merkx, Stefan L. Frank, Mirjam Ernestus Centre for Language Studies, Radboud University, Nijmegen, The Netherlands [email protected], [email protected], [email protected] Abstract liest VGS models, used a database of around 8,000 utterances This study addresses the question whether visually [15]. Harwath and colleagues introduced the first ‘modern’ neu- grounded speech recognition (VGS) models learn to capture ral network based approach which was trained on the Flickr8k sentence semantics without access to any prior linguistic knowl- Audio Caption corpus, a corpus with 40,000 utterances [16]. edge. We produce synthetic and natural spoken versions of a This corpus was quickly followed up by Places Audio Captions well known semantic textual similarity database and show that (400,000 utterances) [17] and, most recently, by SpokenCOCO our VGS model produces embeddings that correlate well with (600,000 utterances) [14]. human semantic similarity judgements. Our results show that However, previous work on visual grounding using writ- a model trained on a small image-caption database outperforms ten captions has shown that larger databases do not always re- two models trained on much larger databases, indicating that sult in better models. In [18], we compared models trained on database size is not all that matters. We also investigate the im- the written captions of Flickr8k [19] and MSCOCO [20]. We portance of having multiple captions per image and find that showed that, although the much larger MSCOCO (600k sen- this is indeed helpful even if the total number of images is tences) achieved better performance on the training task, the lower, suggesting that paraphrasing is a valuable learning sig- model trained on the smaller Flickr database performed better nal.
    [Show full text]
  • Word Embeddings for Semantic Similarity: Comparing LDA with Word2vec
    Word embeddings for semantic similarity: comparing LDA with Word2vec Luandrie Potgieter1 and Alta de Waal12 1 Department of Statistics, University of Pretoria 2 Center for Artificial Intelligence Research (CAIR) 1 Introduction Distributional semantics is a subfield in Natural Language Processing (NLP) that studies methods to derive meaning, and semantic representations for text. These representations can be thought of as statistical distributions of words assuming that it characterises semantic behaviour. These statistical distributions are often referred to as embeddings, or lower dimensional representations of the text. The two main categories of embeddings are count-based and prediction-based methods. Count-based methods most often result in global word embeddings as it utilizes the frequency of words in documents. Prediction-based embeddings on the other hand are often referred to as local embeddings as it takes into account a window of words adjacent to the word of interest. Once a corpus is represented by its semantic distribution (which is in a vector space), all kinds of similarity measures can be applied. This again leads to other NLP applications such as collaborative filtering, aspect-based sentiment analysis, intent classification for chatbots and machine translation. In this research, we investigate the appropriateness of Latent Dirichlet Allo- cation (LDA) [1] and word2vec [4] embeddings as semantic representations of a corpus. Once the semantic representation of a corpus is obtained, the distances between the documents and query documents are obtained by means of dis- tance measures such as cosine, Euclidean or Jensen-Shannon. We expect short distances between documents with similar semantic representations and longer distances between documents with different semantic representations.
    [Show full text]
  • Event-Based Knowledge Reconciliation Using Frame Embeddings And
    Knowledge-Based Systems 135 (2017) 192–203 Contents lists available at ScienceDirect Knowle dge-Base d Systems journal homepage: www.elsevier.com/locate/knosys Event-base d knowle dge reconciliation using frame emb e ddings and frame similarity ∗ Mehwish Alam a, Diego Reforgiato Recupero b,d, , Misael Mongiovi c, Aldo Gangemi a,d, Petar Ristoski e a Université Paris 13, 99 avenue JB Clément, Villetaneuse, Paris 93430, France b Università degli Studi di Cagliari, Department of Mathematics and Computer Science, Via Ospedale 72, Cagliari 09124, Italy c CNR, ISTC, Catania, Italy d CNR, ISTC, Via S. Martino della Battaglia 44, Rome, Italy e University of Mannheim, Mannheim, Germany a r t i c l e i n f o a b s t r a c t Article history: This paper proposes an evolution over MERGILO, a tool for reconciling knowledge graphs extracted from Received 6 April 2017 text, using graph alignment and word similarity. The reconciled knowledge graphs are typically used Revised 9 August 2017 for multi-document summarization, or to detect knowledge evolution across document series. The main Accepted 14 August 2017 point of improvement focuses on event reconciliation i.e., reconciling knowledge graphs generated by text Available online 16 August 2017 about two similar events described differently. In order to gather a complete semantic representation of Keywords: events, we use FRED semantic web machine reader, jointly with Framester, a linguistic linked data hub Knowledge reconciliation represented using a novel formal semantics for frames. Framester is used to enhance the extracted event Frame semantics knowledge with semantic frames.
    [Show full text]
  • Mathlingbudapest: Concept Networks for Semantic Similarity
    MathLingBudapest: Concept Networks for Semantic Similarity Gabor´ Recski Judit Acs´ Research Institute for Linguistics HAS Research Institute for Linguistics and Hungarian Academy of Sciences Dept. of Automation and Applied Informatics Benczur´ u. 33 Budapest U of Technology and Economics 1068 Budapest, Hungary Magyar tudosok´ krt. 2 (Bldg. Q.) [email protected] 1117 Budapest, Hungary [email protected] Abstract on Semeval Task 2a (Semantic Textual Similarity for English). All components of our system are We present our approach to measuring seman- available for download under an MIT license from tic similarity of sentence pairs used in Se- GitHub12. Section 2 describes the system architec- meval 2015 tasks 1 and 2. We adopt the ture and points out the main differences between our sentence alignment framework of (Han et al., system and that in (Han et al., 2013), section 3 out- 2013) and experiment with several measures of word similarity. We hybridize the common lines our word similarity metric derived from the vector-based models with definition graphs 4lang concept lexicon. We present the evaluation from the 4lang concept dictionary and de- of our systems on both tasks in section 4, and section vise a measure of graph similarity that yields 5 provides a brief conclusion. good results on training data. We did not ad- dress the specific challenges posed by Twitter 2 Architecture data, and this is reflected in placing 11th from 30 in Task 1, but our systems perform fairly Our framework for determining the semantic simi- well on the generic datasets of Task 2, with the larity of two sentences is based on the system pre- hybrid approach placing 11th among 78 runs.
    [Show full text]