Ansgar Scherp

dblp:06/2380 · DBLP profile ↗
← Back
42ranked-venue papers in the field
2as first author
8since 2021 · last 2024
0000-0002-2653-9245ORCID · verified

Domains — venue-derived; a paper can count in several

Knowledge Engineering, Semantic Web & Information Systems · 24 (2 first)Information Retrieval & Web Search · 13Database Systems & Data Management · 2Other / Interdisciplinary · 2Data Mining & Knowledge Discovery · 1
YearPublicationVenuePosition
2024 Text Role Classification in Scientific Charts Using Multimodal Transformers
Hye Jin Kim, Nicolas Lell, Ansgar Scherp
NLDB (1)3
2023 Computing k-Bisimulations for Large Graphs: A Comparison and Efficiency Analysis
Jannik Rau, David Richerby, Ansgar Scherp
ICGT3
2023 On the Rule-Based Extraction of Statistics Reported in Scientific Papers
Tobias Kalmbach, Marcel Hoffmann 0002, Nicolas Lell, Ansgar Scherp
NLDB4
2022 Graph Summarization as Vertex Classification Task using Graph Neural Networks vs. Bloom Filter
abstract
The goal of graph summarization is to represent large graphs in a structured and compact way. A graph summary based on equivalence classes preserves predefined features of each vertex within a k-hop neighborhood, such as the vertex and edge labels. Based on these neighborhood characteristics, the vertex is assigned to an equivalence class. The calculation of the assigned equivalence class must be a permutation invariant operation on the predefined features. This is typically achieved by sorting on the feature values, which is computationally expensive, and subsequently hashing the result. Graph Neural Networks (GNNs) fulfill the permutation invariance requirement. We formulate the problem of graph summarization as a subgraph classification task on the root vertex of the k-hop neighborhood. We adapt different GNN architectures, both based on the popular message-passing protocol and alternative approaches, to perform the structural graph summarization task. We compare different GNNs with a standard multi-layer perceptron (MLP) and Bloom filter as a non-neural method. We consider four popular graph summary models on a large web graph. This resembles challenging multi-class vertex classification tasks with the numbers of classes ranging from 576 to hundreds of thousands. Our results show that the performance of GNNs are close to each other. In three out of four experiments, the non-message-passing Graph-MLP model outperforms the other GNNs. The performance of the standard MLP is extraordinarily good, especially in the presence of many classes. Finally, the Bloom filter outperforms all neural architectures by a large margin, except for the dataset with the fewest number (576) of classes. This is an interesting result, since it sheds light on how well and in which contexts GNNs are suited for graph summarization. Furthermore, it demonstrates the need for considering strong non-neural baselines for standard GNN tasks such as vertex classification.
Maximilian Blasi, Manuel Freudenreich, Johannes Horvath, David Richerby, Ansgar Scherp
DSAA5
2022 Recommendations for item set completion: on the semantics of item co-occurrence with data sparsity, input size, and input modalities
abstract
Abstract We address the problem of recommending relevant items to a user in order to “complete” a partial set of already-known items. We consider the two scenarios of citation and subject label recommendation, which resemble different semantics of item co-occurrence: relatedness for co-citations and diversity for subject labels. We assess the influence of the completeness of an already known partial item set on the recommender’s performance. We also investigate data sparsity by imposing a pruning threshold on minimum item occurrence and the influence of using additional metadata. As models, we focus on different autoencoders, which are particularly suited for reconstructing missing items in a set. We extend autoencoders to exploit a multi-modal input of text and structured data. Our experiments on six real-world datasets show that supplying the partial item set as input is usually helpful when item co-occurrence resembles relatedness, while metadata are effective when co-occurrence implies diversity. The simple item co-occurrence model is a strong baseline for citation recommendation but can provide good results also for subject labels. Autoencoders have the capability to exploit additional metadata besides the partial item set as input, and achieve comparable or better performance. For the subject label recommendation task, the title is the most important attribute. Adding more input modalities sometimes even harms the results. In conclusion, it is crucial to consider the semantics of the item co-occurrence for the choice of an appropriate model and carefully decide which metadata to exploit.
Iacopo Vagliano, Lukas Galke Poech, Ansgar Scherp
Inf. Retr. J.3
2021 A novel approach on the joint de-identification of textual and relational data with a modified mondrian algorithm
abstract
Traditional approaches for data anonymization consider relational data and textual data independently. We propose rx-anon, an anonymization approach for heterogeneous semi-structured documents composed of relational and textual attributes. We map sensitive terms extracted from the text to the structured data. This allows us to use concepts like k-anonymity to generate a joint, privacy-preserved version of the heterogeneous data input. We introduce the concept of redundant sensitive information to consistently anonymize the heterogeneous data. To control the influence of anonymization over unstructured textual data versus structured data attributes, we introduce a modified, parameterized Mondrian algorithm. We evaluate our approach with two real-world datasets using a Normalized Certainty Penalty score, adapted to the problem of jointly anonymizing relational and textual data. The results show that our approach is capable of reducing information loss by using the tuning parameter to control the Mondrian partitioning while guaranteeing k-anonymity. As rx-anon is a framework approach, it can be reused and extended by other anonymization algorithms, privacy models, and textual similarity metrics.
Fabian Singhofer, Aygul Garifullina, Mathias Kern, Ansgar Scherp
DocEng4
2021 STEREO: A Pipeline for Extracting Experiment Statistics, Conditions, and Topics from Scientific Papers
abstract
A common writing style for statistical results are the recommendations of the American Psychology Association (APA). In practice, writing styles vary as reports are not 100% following APA-style or parameters are not reported despite being mandatory. In addition, the statistics are not reported in isolation but in context of experiment conditions investigated and the general experiment topic. We address these challenges by proposing a flexible pipeline STEREO based on wrapper induction and unsupervised aspect detection to extract experiment statistics, conditions, and topics. Thus, in contrast to existing rule-based tools like statcheck with a pre-defined set of rules, we learn rules via induction. It required only 0.25% of the CORD-19 corpus (about 500 documents) to learn statistics extraction rules that cover 95% of the sentences in CORD-19. The statistic extraction has 100% precision on APA-conform statistics, which is identical with statcheck. In addition, STEREO can extract non-APA writing styles with precision, which statcheck does not support. Extracting non-APA conform statistics is important as they make more than 99% of all 113k extracted statistics. We could extract in 46% the correct conditions from APA-conform reports (30% for non-APA). The best model for topic extraction achieves a precision of 75% on statistics reported in APA style (73% for non-APA conform).
Steffen Epp, Marcel Hoffmann 0002, Nicolas Lell, Michael Mohr, Ansgar Scherp
iiWAS5
2021 Analysis of GraphSum's Attention Weights to Improve the Explainability of Multi-Document Summarization
abstract
Modern multi-document summarization (MDS) methods are based on transformer architectures. They generate state of the art summaries, but lack explainability. To overcome this, we analyze the attention weights of a graph-based MDS such as GraphSum. We compare GraphSum’s performance utilizing different textual units, i. e., sentences versus paragraphs, on two MDS benchmark datasets, namely WikiSum and MultiNews. Our experiments show that paragraph-level representations provide the best summarization performance. Subsequently, we focus on analyzing the paragraph-level attention weights of GraphSum’s multi-heads and decoding layers. Furthermore, we examine source origin information via text similarity over a ROUGE-based reference metric. We observe a high correlation between the attention weights and our reference metric, especially on the later decoding layers. Finally, we investigate if the generated summaries follow a pattern of positional bias. Our results show that there is a high correlation between the position of paragraphs in the input documents and the content provided for the generated summary.
Manuel Lautaro Hickmann, Fabian Wurzberger, Megi Hoxhalli, Arne Lochner, Jessica Töllich, Ansgar Scherp
iiWAS6
2020 Incremental and Parallel Computation of Structural Graph Summaries for Evolving Graphs
abstract
Graph summarization is the task of finding condensed representations of graphs such that a chosen set of (structural) subgraph features in the graph summary are equivalent to the input graph. Existing graph summarization algorithms are tailored to specific graph summary models, only support one-time batch computation, are designed and implemented for a specific task, or evaluated using static graphs. Our novel, incremental, parallel algorithm addresses all these shortcomings. We support various structural graph summary models defined in our formal language FLUID. All graph summaries defined with FLUID can be updated in time O(Δ · dk), where Δ is the number of additions, deletions, and modifications to the input graph, d is its maximum degree, and k is the maximum distance in the subgraphs considered. We empirically evaluate the performance of our algorithm on benchmark and real-world datasets. Our experiments show that, for commonly used summary models and datasets, the incremental summarization algorithm almost always outperforms their batch counterpart, even when about $50%$ of the graph database changes. The source code and the experimental results are openly available for reproducibility and extensibility.
Till Blume, David Richerby, Ansgar Scherp
CIKM3
2020 Indexing Data on the Web: A Comparison of Schema-Level Indices for Data Search
Till Blume, Ansgar Scherp
DEXA (2)2
2019 Text Localization in Scientific Figures using Fully Convolutional Neural Networks on Limited Training Data
abstract
Text extraction from scientific figures has been addressed in the past by different unsupervised approaches due to the limited amount of training data. Motivated by the recent advances in Deep Learning, we propose a two-step neural-network-based pipeline to localize and extract text using Fully Convolutional Networks. We improve the localization of the text bounding boxes by applying a novel combination of a Residual Network with the Region Proposal Network based on Faster R-CNN. The predicted bounding boxes are further pre-processed and used as input to the of-the-shelf optical character recognition engine Tesseract 4.0. We evaluate our improved text localization method on five different datasets of scientific figures and compare it with the best unsupervised pipeline. Since only limited training data is available, we further experiment with different data augmentation techniques for increasing the size of the training datasets and demonstrate their positive impact. We use Average Precision and F1 measure to assess the text localization results. In addition, we apply Gestalt Pattern Matching and Levenshtein Distance for evaluating the quality of the recognized text. Our extensive experiments show that our new pipeline based on neural networks outperforms the best unsupervised approach by a large margin of 19-20%.
Morten Jessen, Falk Böschen, Ansgar Scherp
DocEng3
2019 Towards Serendipitous Research Paper Recommender Using Tweets and Diversification
Chifumi Nishioka, Jörn Hauke, Ansgar Scherp
TPDL3
2019 Analyzing the Evolution of Linked Vocabularies
Mohammad Abdel-Qader, Iacopo Vagliano, Ansgar Scherp
ICWE3
2018 Analyzing the Evolution of Vocabulary Terms and Their Impact on the LOD Cloud
Mohammad Abdel-Qader, Ansgar Scherp, Iacopo Vagliano
ESWC2
2017 Evaluation of the Comprehensiveness of Bar Charts with and without Stacking Functionality using Eye-Tracking
abstract
Bar charts are widely used to visualize core results of experiments in research papers or display statistics in news, media, and other reports. However, visualizations like bar charts are mostly manually designed, static presentations of data without the option of adaption to a user's needs. But so far, it is unknown whether interactivity improves the understanding of charts. In this work, we compare static with dynamic bar charts, which offer an interactive stacking option. We assess the efficiency, effectiveness, and satisfaction when answering questions regarding the content of a bar chart. An eye-tracker is used to measure the efficiency. We have conducted a between group experiment with 38 participants. While one group had to solve the aggregation tasks using stackable, i.e., interactive bar charts, the other group was limited to static visualizations. Even though new interactive features require familiarization, we found that the stacking feature significantly helps completing the tasks with respect to efficiency, effectiveness, and satisfaction for bar charts of varying complexity.
Falk Böschen, Benjamin Strobel, Steffen Goos, Christoph Liebers, Bastian Rathje, Ansgar Scherp
CHIIR6
2017 Using Titles vs. Full-text as Source for Automated Semantic Document Annotation
abstract
We conduct the first systematic comparison of automated semantic annotation based on either the full-text or only on the title metadata of documents. Apart from the prominent text classification baselines kNN and SVM, we also compare recent techniques of Learning to Rank and neural networks and revisit the traditional methods logistic regression, Rocchio, and Naive Bayes. Across three of our four datasets, the performance of the classifications using only titles reaches over 90% of the quality compared to the performance when using the full-text.
Lukas Galke Poech, Florian Mai, Alan Schelten, Dennis Brunsch, Ansgar Scherp
K-CAP5
2017 Content Recommendation through Semantic Annotation of User Reviews and Linked Data
abstract
Nowadays, most recommender systems exploit user-provided ratings to infer their preferences. However, the growing popularity of social and e-commerce websites has encouraged users to also share comments and opinions through textual reviews. In this paper, we introduce a new recommendation approach which exploits the semantic annotation of user reviews to extract useful and non-trivial information about the items to recommend. It also relies on the knowledge freely available in the Web of Data, notably in DBpedia and Wikidata, to discover other resources connected with the annotated entities. We evaluated our approach in three domains, using both DBpedia and Wikidata. The results showed that our solution provides a better ranking than another recommendation method based on the Web of Data, while it improves in novelty with respect to traditional techniques based on ratings.
Iacopo Vagliano, Diego Monti, Ansgar Scherp, Maurizio Morisio
K-CAP3
2017 Keeping linked open data caches up-to-date by predicting the life-time of RDF triples
abstract
Many Linked Open Data applications require fresh copies of RDF data at their local repositories. Since RDF documents constantly change and those changes are not automatically propagated to the LOD applications, it is important to regularly visit the RDF documents to refresh the local copies and keep them up-to-date. For this purpose, crawling strategies determine which RDF documents should be preferentially fetched. Traditional crawling strategies rely only on how an RDF document has been modified in the past. In contrast, we predict on the triple level whether a change will occur in the future. We use the weekly snapshots of the DyLDO dataset as well as the monthly snapshots of the Wikidata dataset. First, we conduct an in-depth analysis of the life span of triples in RDF documents. Through the analysis, we identify which triples are stable and which are ephemeral. We introduce different features based on the triples and apply a simple but effective linear regression model. Second, we propose a novel crawling strategy based on the linear regression model. We conduct two experimental setups where we vary the amount of available bandwidth as well as iteratively observe the quality of the local copies over time. The results demonstrate that the novel crawling strategy outperforms the state of the art in both setups.
Chifumi Nishioka, Ansgar Scherp
WI2
2016 TermPicker: Enabling the Reuse of Vocabulary Terms by Exploiting Data from the Linked Open Data Cloud
Johann Schaible, Thomas Gottron, Ansgar Scherp
ESWC3
2016 Comparing Vocabulary Term Recommendations Using Association Rules and Learning to Rank: A User Study
Johann Schaible, Pedro A. Szekely, Ansgar Scherp
ESWC3
2015 Multi-oriented Text Extraction from Information Graphics
abstract
Existing research on analyzing information graphics assume to have a perfect text detection and extraction available. However, text extraction from information graphics is far from solved. To fill this gap, we propose a novel processing pipeline for multi-oriented text extraction from infographics. The pipeline applies a combination of data mining and computer vision techniques to identify text elements, cluster them into text lines, compute their orientation, and uses a state-of-the-art open source OCR engine to perform the text recognition. We evaluate our method on 121 infographics extracted from an open access corpus of scientific publications. The results show that our approach is effective and significantly outperforms a state-of-the-art baseline.
Falk Böschen, Ansgar Scherp
DocEng2
2015 A Comparison of Different Strategies for Automated Semantic Document Annotation
abstract
We introduce a framework for automated semantic document annotation that is composed of four processes, namely concept extraction, concept activation, annotation selection, and evaluation. The framework is used to implement and compare different annotation strategies motivated by the literature. For concept extraction, we apply entity detection with semantic hierarchical knowledge bases, Tri-gram, RAKE, and LDA. For concept activation, we compare a set of statistical, hierarchy-based, and graph-based methods. For selecting annotations, we compare top-k as well as kNN. In total, we define 43 different strategies including novel combinations like using graph-based activation with kNN. We have evaluated the strategies using three different datasets of varying size from three scientific disciplines (economics, politics, and computer science) that contain 100, 000 manually labeled documents in total. We obtain the best results on all three datasets by our novel combination of entity detection with graph-based activation (e.g., HITS and Degree) and kNN. For the economic and political science datasets, the best F-measure is .39 and .28, respectively. For the computer science dataset, the maximum F-measure of .33 can be reached. The experiments are the by far largest on scholarly content annotation, which typically are up to a few hundred documents per dataset only.
Gregor Große-Bölting, Chifumi Nishioka, Ansgar Scherp
K-CAP3
2015 Temporal Patterns and Periodicity of Entity Dynamics in the Linked Open Data Cloud
abstract
We present initial results of finding temporal patterns of entity dynamics on the Linked Open Data (LOD) cloud. For the analysis, we use the dataset of the three-year observation of the Dynamic Linked Data Observatory. Using k-means++ clustering with Euclidean distance, we reveal the temporal patterns of entity dynamics. In addition, we conduct the first investigation of periodicity in entity dynamics on the LOD cloud. While a large portion of entities are static, a certain number of entities have a temporal pattern with substantial changes. We observe different periodicity with respect to temporal patterns of entity dynamics. Knowing about the temporal patterns and their periodicity is important for applications that are depending on fresh data caches and indices of the distributed LOD cloud. They can concentrate in crawling and refreshing those parts of the LOD cloud, which are a) known to have changes in the past and b) currently have their highest periodical change rate.
Chifumi Nishioka, Ansgar Scherp
K-CAP2
2015 Linked Open Data Visualization with State Hopper: Learning about Europe and its Countries
abstract
We present State Hopper, an interactive multimedia application that uses Linked Open Data to generate a map-based educational game. A prototype of the system using Europe as map was implemented in a student project. Goal of the game is to move from country to country by learning facts about the countries like population, GDP, size, and others. Each movement from one country to another country on the map generates new insights and allows the player to capture new knowledge about the countries.
Alexander Prange, Melanie Windrich, Daniel Grevismühl, Falk Böschen, Ansgar Scherp
K-CAP5
2015 Strategies for Efficiently Keeping Local Linked Open Data Caches Up-To-Date
Renata Queiroz Dividino, Thomas Gottron, Ansgar Scherp
ISWC (2)3
2015 Analysis of schema structures in the Linked Open Data graph based on unique subject URIs, pay-level domains, and vocabulary usage
Thomas Gottron, Malte Knauf, Ansgar Scherp
Distributed Parallel Databases3
2014 Providing Alternative Declarative Descriptions for Entity Sets Using Parallel Concept Lattices
Thomas Gottron, Ansgar Scherp, Stefan Scheglmann
ESWC2
2014 A Framework for Iterative Signing of Graph Data on the Web
Andreas Kasten, Ansgar Scherp, Peter Schauß
ESWC2
2014 Survey on Common Strategies of Vocabulary Reuse in Linked Open Data Modeling
Johann Schaible, Thomas Gottron, Ansgar Scherp
ESWC3
2013 A Systematic Investigation of Explicit and Implicit Schema Information on the Linked Open Data Cloud
Thomas Gottron, Malte Knauf, Stefan Scheglmann, Ansgar Scherp
ESWC4
2013 LODatio: using a schema-level index to support users infinding relevant sources of linked data
abstract
The Linked Open Data (LOD) cloud provides a vast amount of heterogeneous data, distributed over numerous data sources. This makes it difficult to find those data sources in the cloud which are relevant for a given information need. Existing search engines for the Semantic Web focus on instance-oriented information needs, i. e., searching for specific RDF instances or literals and exploring the search results. However, they do not address the question of finding linked data sources relevant to a schema-oriented information need, i. e., queries based on triple patterns relating to a specific combination of RDF types and/or properties. In this paper, we present the semantic search system LODatio leveraging a schema-level index for finding sources of Linked Data relevant to a schema-oriented information need. Beyond its capability to retrieve relevant data sources, LODatio actively supports the user in his schema-oriented search tasks. To this end, it provides ranked result lists of relevant data sources together with example snippets and an estimation of the result set size. Furthermore, LODatio provides support for novel features in semantic search such as recommending alternative queries in order to refine or broaden the result set.
Thomas Gottron, Ansgar Scherp, Bastian Krayer, Arne Peters
K-CAP2
2013 Towards a framework for iteratively signing graph data
abstract
When publishing graph data on the web such as vocabularies using RDF(S) or OWL, one has only limited means to verify the authenticity and integrity of the graph data. Today's approaches require a high signature overhead and do not support iterative signing of graph data. This paper describes a first step towards a framework for signing arbitrary graph data provided in RDF(S), Named Graphs, or OWL. Our framework supports signing graph data at different levels of granularity: minimum self-contained graphs (MSG), sets of MSGs, and entire graphs. It supports iteratively signing graph data, e. g., when different parties provide different parts of a common graph, and allows for signing multiple graphs. Both can be done with a constant, low overhead for the resulting signature statements, even when iteratively signing.
Andreas Kasten, Ansgar Scherp
K-CAP2
2013 On the Status of Experimental Research on the Semantic Web
Heiner Stuckenschmidt, Michael Schuhmacher, Johannes Knopp, Christian Meilicke, Ansgar Scherp
ISWC (1)5
2012 Declarative Representation of Programming Access to Ontologies
Stefan Scheglmann, Ansgar Scherp, Steffen Staab
ESWC2
2012 SchemEX - Efficient construction of a data catalogue by stream-based indexing of linked data
Mathias Konrath, Thomas Gottron, Steffen Staab, Ansgar Scherp
J. Web Semant.4
2011 strukt - A Pattern System for Integrating Individual and Organizational Knowledge Work
Ansgar Scherp, Daniel Eißing, Steffen Staab
ISWC (1)1
2010 Collaborative Semantic Points of Interests
Max Braun, Ansgar Scherp, Steffen Staab
ESWC (2)2
2010 Representing Distributed Groups with dgFOAF
Felix Schwagereit, Ansgar Scherp, Steffen Staab
ESWC (2)2
2010 Unlocking the semantics of multimedia presentations in the web with the multimedia metadata ontology
abstract
The semantics of rich multimedia presentations in the web such as SMIL, SVG, and Flash cannot or only to a very limited extend be understood by search engines today. This hampers the retrieval of such presentations and makes their archival and management a difficult task. Existing metadata models and metadata standards are either conceptually too narrow, focus on a specific media type only, cannot be used and combined together, or are not practically applicable for the semantic description of rich multimedia presentations.
Carsten Saathoff, Ansgar Scherp
WWW2
2009 Are semantic desktops better?: summative evaluation comparing a semantic against a conventional desktop
abstract
Semantic desktop environments aim at improving the effectiveness and efficiency of users carrying out daily tasks within their personal information management (PIM) infrastructure. They support the user by transferring and exploiting the explicit semantics of data items across different PIM applications. Whether such an approach does indeed reach its aim of facilitating users' life and--if so--to which extent, however, remains an open question. In this paper we address this question with the first summative evaluation of a semantic desktop. We have developed a test environment to evaluate two semantic PIM applications against standard PIM tools. As result, we have found significant efficiency and satisfaction improvements for typical PIM tasks.
Thomas Franz, Ansgar Scherp, Steffen Staab
K-CAP2
2009 F--a model of events based on the foundational ontology dolce+DnS ultralight
abstract
The lack of a formal model of events hinders interoperability in distributed event-based systems. In this paper, we present a formal model of events, called Event-Model-F. The model is based on the foundational ontology DOLCE+DnS Ultralight (DUL) and provides comprehensive support to represent time and space, objects and persons, as well as mereological, causal, and correlative relationships between events. In addition, the Event-Model-F provides a flexible means for event composition, modeling event causality and event correlation, and representing different interpretations of the same event. The Event-Model-F is developed following the pattern-oriented approach of DUL, is modularized in different ontologies, and can be easily extended by domain specific ontologies.
Ansgar Scherp, Thomas Franz, Carsten Saathoff, Steffen Staab
K-CAP1
2009 SemaPlorer - Interactive semantic exploration of data and media based on a federated cloud infrastructure
Simon Schenk, Carsten Saathoff, Steffen Staab, Ansgar Scherp
J. Web Semant.4