VLDB 2026 Research / reviewers in the wild / expert
Michael Granitzer
dblp:32/1270
· DBLP profile ↗
52ranked-venue papers in the field
1as first author
36since 2021 · last 2026
0000-0003-3566-5507ORCID · verified
Domains — venue-derived; a paper can count in several
Information Retrieval & Web Search · 34 (1 first)Data Mining & Knowledge Discovery · 10Knowledge Engineering, Semantic Web & Information Systems · 4Database Systems & Data Management · 3Other / Interdisciplinary · 1
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | From SERPs to Agents: A Platform for Comparative Studies of Information InteractionabstractThe diversification of information access systems, from RAG to autonomous agents, creates a critical need for comparative user studies. However, the technical overhead to deploy and manage these distinct systems is a major barrier. We present UXLab ,, an open-source system for web-based user studies that addresses this challenge. Its core is a web-based dashboard enabling the complete, no-code configuration of complex experimental designs. Researchers can visually manage the full study, from recruitment to comparing backends like traditional search, vector databases, and LLMs. We demonstrate UXLab’s value via a micro case study comparing user behavior with RAG versus an autonomous agent. UXLab allows researchers to focus on experimental design and analysis, supporting future multi-modal interaction research. Saber Zerhoudi, Michael Granitzer |
CHIIR | 2 |
| 2026 | In-Browser Agents for Search AssistanceabstractA fundamental tension exists between the demand for sophisticated AI assistance in web search and the need for user data privacy. Current centralized models require users to transmit sensitive browsing data to external services, which limits user control. In this paper, we present a browser extension that provides a viable in-browser alternative. We introduce a hybrid architecture that functions entirely on the client side, combining two components: (1) an adaptive probabilistic model that learns a user’s behavioral policy from direct feedback, and (2) a Small Language Model (SLM), running in the browser, which is grounded by the probabilistic model to generate context-aware suggestions. To evaluate this approach, we conducted a three-week longitudinal user study with 18 participants. Our results show that this privacy-preserving approach is highly effective at adapting to individual user behavior, leading to measurably improved search efficiency. This work demonstrates that sophisticated AI assistance is achievable without compromising user privacy or data control. Saber Zerhoudi, Michael Granitzer |
CHIIR | 2 |
| 2026 | CoRECT: A Framework for Evaluating Embedding Compression Techniques at Scale
Laura Caspari, Michael Dinzinger, Kanishka Ghosh Dastidar, Christofer Fellicious, Jelena Mitrovic, Michael Granitzer |
ECIR (4) | 6 |
| 2026 | The Third International Workshop on Open Web Search (WOWS)
Laura Caspari, Maik Fröbe, Sebastian Heineking, Michael Granitzer, Gijs Hendriksen, Djoerd Hiemstra, Martin Potthast, Arjen P. de Vries, Saber Zerhoudi |
ECIR (3) | 4 |
| 2026 | Creating Specialized RAG-Based Search Engines Using the Open Web Index
Alexander Nussbaumer, Michael Dinzinger, Sebastian Heineking, Gijs Hendriksen, Felix Holz, Saber Zerhoudi, Martin Potthast, Michael Granitzer |
ECIR (4) | 8 |
| 2026 | Beyond the Click: A Framework for Inferring Cognitive Traces in SearchabstractUser simulators are essential for evaluating search systems, but they primarily copy user actions without understanding the underlying thought process. This gap exists since large-scale interaction logs record what users do, but not what they might be thinking or feeling, such as confusion or satisfaction. To solve this problem, we present a framework to infer cognitive traces from behavior logs. Our method uses a multi-agent system grounded in Information Foraging Theory (IFT) and human expert judgment. These traces improve model performance on tasks like forecasting session outcomes and user struggle recovery. We release a collection of annotations for several public datasets, including AOL and Stack Overflow, and an open-source tool that allows researchers to apply our method to their own data ( https://github.com/searchsim-org/cognitive-traces ). This work provides the tools and data needed to build more human-like user simulators and to assess retrieval systems on user-oriented dimensions of performance. Saber Zerhoudi, Michael Granitzer |
ECIR (4) | 2 |
| 2026 | Query Performance Prediction under Corpus Growth in Dense RetrievalabstractLLM-based chatbots are increasingly augmented with retrieval mechanisms operating over web-scale corpora. Evaluating the effectiveness of these retrieval components is challenging, as explicit relevance judgments are often unavailable. Query performance prediction (QPP) addresses this limitation by providing unsupervised estimates of retrieval effectiveness. However, existing QPP methods assume a static corpus and do not account for the impact of corpus growth on query performance. In this work, we extend the QPP paradigm by studying query performance degradation under corpus inflation in dense retrieval systems. Using tiered corpora with fixed relevance judgments, we analyze how query effectiveness evolves as the corpus (index) size increases and evaluate the ability of established score-based and embedding-based post-retrieval QPP methods to predict such degradation. Our findings show that the reliability of these predictors is dependent on the dataset. We propose simple adaptations to established QPP measures, most notably a top-k vs background Wasserstein distance measure, which yield more consistent associations with degradation and outperform their original counterparts. These findings highlight limitations of several QPP approaches in large-scale, continuously expanding retrieval environments and motivate the development of corpus-growth-aware QPP measures. Kanishka Ghosh Dastidar, Michael Dinzinger, Laura Caspari, Jelena Mitrovic, Michael Granitzer |
SIGIR | 5 |
| 2026 | WebFAQ 2.0: A Multilingual QA Dataset with Mined Hard Negatives for Dense RetrievalabstractWe introduce WebFAQ 2.0, a new version of the WebFAQ dataset, containing 198 million FAQ-based natural question-answer pairs across 108 languages. Compared to the previous version, it significantly expands multilingual coverage and the number of bilingual aligned QA pairs to over 14.3M, making it the largest FAQ-based resource. Unlike the original release, WebFAQ 2.0 uses a novel data collection strategy that directly crawls and extracts relevant web content, resulting in a substantially more diverse and multilingual dataset with richer context through page titles and descriptions. In response to community feedback, we also release a hard negatives dataset for training dense retrievers, with 1.25M queries across 20 languages. These hard negatives were mined using a two-stage retrieval pipeline and include cross-encoder scores for 200 negatives per query. We further show how this resource enables two primary fine-tuning strategies for dense retrievers: Contrastive Learning with MultipleNegativesRanking loss, and Knowledge Distillation with MarginMSE loss. Michael Dinzinger, Laura Caspari, Ali Salman, Irvin Topi, Jelena Mitrovic, Michael Granitzer |
SIGIR | 6 |
| 2026 | NuggetIndex: Governed Atomic Retrieval for Maintainable RAGabstractRetrieval-augmented generation (RAG) systems are frequently evaluated via fact-based metrics, yet standard implementations retrieve passages or static propositions. This unit mismatch between evaluation and retrieval objects hinders maintenance when corpora evolve and fails to capture superseded facts or source disagreements. We propose NuggetIndex, a retrieval system that stores atomic information units as managed records, so called nuggets. Each record maintains links to evidence, a temporal validity interval, and a lifecycle state. By filtering invalid or deprecated nuggets prior to ranking, the system prevents the inclusion of outdated information. We evaluate the approach using a nuggetized MS MARCO subset, a temporal Wikipedia QA dataset, and a multi-hop QA task. Against passage and unmanaged proposition retrieval baselines, NuggetIndex improves nugget recall by 42%, increases temporal correctness by 9 percentage points without the recall collapse observed in time-filtered baselines, and reduces conflict rates by 55%. The compact nugget format reduces generator input length by 64% while enabling lightweight index structures suitable for browser-based and resource-constrained deployment. We release our implementation, datasets, and evaluation scripts Saber Zerhoudi, Michael Granitzer, Jelena Mitrovic |
SIGIR | 2 |
| 2026 | AgentSim: A Platform for Verifiable Agent-Trace SimulationabstractTraining trustworthy agentic LLMs requires data that shows the grounded reasoning process, not just the final answer. Existing datasets fall short: question-answering data is outcome-only, chain-of-thought data is not tied to specific documents, and web-agent datasets track interface actions rather than the core retrieval and synthesis steps of a RAG workflow. We introduce AgentSim, an open-source platform for simulating RAG agents. It generates verifiable, stepwise traces of agent reasoning over any document collection. AgentSim uses a policy to ensure the agent widely explores the document set. It combines a multi-model validation pipeline with an active human-in-the-loop process. This approach focuses human effort on difficult steps where models disagree. Using AgentSim, we construct and release the Agent-Trace Corpus (ATC), a large collection of grounded reasoning trajectories spanning three established IR benchmarks. We make three contributions: (1) the AgentSim platform with two mechanisms, Corpus-Aware Seeding and Active Validation, that improve trace diversity and quality; (2) the Agent-Trace Corpus (ATC), over 103,000 verifiable reasoning steps spanning three IR benchmarks, with 100% grounding rate on substantive answers; and (3) a comparative behavioral analysis revealing systematic differences in how state-of-the-art models approach information seeking. Platform, toolkit, and corpus are publicly available. Saber Zerhoudi, Michael Granitzer, Jelena Mitrovic |
SIGIR | 2 |
| 2026 | IIRSim Studio: A Dashboard for User SimulationabstractUser simulation is a valuable methodology for evaluation in Information Retrieval (IR), enabling low-cost experimentation and counterfactual analysis. However, existing simulation frameworks are primarily code-centric libraries that require substantial setup effort, which limits adoption and hinders reproducibility. The bottleneck is not the simulation engines themselves, but the lack of infrastructure connecting experiment design, execution, and sharing into a single verifiable workflow. This paper introduces IIRSim Studio, a web-based workbench that addresses this gap through four contributions: (1) a visual environment for composing simulation pipelines on top of simulation frameworks, serving both novices learning simulation concepts and experts piloting large-scale experiments; (2) a component lifecycle that supports authoring, versioning, and sharing custom simulation components through Git-backed storage and runtime injection; (3) a provenance model based on experiment bundles and environment templates that makes the scope of replication explicit; and (4) a shared-task workflow, demonstrated through the re-deployment of a Sim4IA micro-task. IIRSim Studio is available as a hosted service and as a portable containerized deployment. Saber Zerhoudi, Adam Roegiest, Michael Granitzer |
SIGIR | 3 |
| 2025 | Instruct-to-SPARQL: A text-to-SPARQL dataset for training SPARQL AgentsabstractThe rapid adoption of Large Language Models (LLMs) for search engines and fact-checking platforms necessitates enhancing their output accuracy.Retrieval Augmented Generation (RAG) mitigates hallucinations but requires semantically rich repositories like Wikidata.However, there is a lack of high-quality data to fine-tune LLMs for querying such knowledge bases.To address this gap, we propose a curated dataset with 2,771 unique queries for fine-tuning LLMs to generate accurate and syntactically valid SPARQL queries from natural language instructions.This dataset, customized for interaction with Wikidata, also serves as a robust benchmark for text-to-SPARQL task evaluation.Key findings show that models generally perform better on queries with lower complexity. Mehdi Ben Amor, Alexis Strappazzon, Michael Granitzer, Elöd Egyed-Zsigmond, Jelena Mitrovic |
CHIIR | 3 |
| 2025 | SearchLab: Exploring Conversational and Traditional Search Interfaces in Information Retrieval
Saber Zerhoudi, Michael Granitzer |
CHIIR | 2 |
| 2025 | Compressed Concatenation of Small Embedding ModelsabstractEmbedding models are central to dense retrieval, semantic search, and recommendation systems, but their size often makes them impractical to deploy in resource-constrained environments such as browsers or edge devices. While smaller embedding models offer practical advantages, they typically underperform compared to their larger counterparts. To bridge this gap, we demonstrate that concatenating the raw embedding vectors of multiple small models can outperform a single larger baseline on standard retrieval benchmarks. To overcome the resulting high dimensionality of naive concatenation, we introduce a lightweight unified decoder trained with a Matryoshka Representation Learning (MRL) loss. This decoder maps the high-dimensional joint representation to a low-dimensional space, preserving most of the original performance without fine-tuning the base models. We also show that while concatenating more base models yields diminishing gains, the robustness of the decoder's representation under compression and quantization improves. Our experiments show that, on a subset of MTEB retrieval tasks, our concat-encode-quantize pipeline recovers 89% of the original performance with a 48× compression factor when the pipeline is applied to a concatenation of four small embedding models. M. Ayoub Ben Ayad, Michael Dinzinger, Kanishka Ghosh Dastidar, Jelena Mitrovic, Michael Granitzer |
CIKM | 5 |
| 2025 | UXSim: Towards a Hybrid User Search SimulationabstractSimulating nuanced user experiences within complex interactive search systems poses distinct challenge for traditional methodologies, which often rely on static user proxies or, more recently, on standalone large language model (LLM) agents that may lack deep, verifiable grounding. The true dynamism and personalization inherent in human-computer interaction demand a more integrated approach. This work introduces UXSim, a novel framework that integrates both approaches. It leverages grounded data from traditional simulators to inform and constrain the reasoning of an adaptive LLM agent. This synthesis enables more accurate and dynamic simulations of user behavior while also providing a pathway for the explainable validation of the underlying cognitive processes. Saber Zerhoudi, Michael Granitzer |
CIKM | 2 |
| 2025 | The Missing Link: Joint Legal Citation Prediction Using Heterogeneous Graph Enrichment
Lorenz Wendlinger, Simon Alexander Nonn, Abdullah Al Zubaer, Michael Granitzer |
DEXA (2) | 4 |
| 2025 | The Second International Workshop on Open Web Search (WOWS)
Sheikh Mastura Farzana, Maik Fröbe, Michael Granitzer, Gijs Hendriksen, Djoerd Hiemstra, Martin Potthast, Arjen P. de Vries, Saber Zerhoudi |
ECIR (5) | 3 |
| 2025 | WebFAQ: A Multilingual Collection of Natural Q&A Datasets for Dense RetrievalabstractWe present WebFAQ, a large-scale collection of open-domain question answering datasets derived from FAQ-style schema.org annotations. In total, the data collection consists of 96 million natural question-answer (QA) pairs across 75 languages, including 47 million (49%) non-English samples. WebFAQ further serves as the foundation for 49 monolingual retrieval benchmarks with a total size of 11.2 million QA pairs (5.9 million non-English). These datasets are carefully curated through refined filtering and near-duplicate detection, yielding high-quality resources for training and evaluating multilingual dense retrieval models. To empirically confirm WebFAQ's efficacy, we use the collected QAs to fine-tune an in-domain pretrained XLM-RoBERTa model. Through this process of dataset-specific fine-tuning, the model achieves significant retrieval performance gains, which generalize - beyond WebFAQ - to other multilingual retrieval benchmarks evaluated in zero-shot setting. Last but not least, we utilize WebFAQ to construct a set of QA-aligned bilingual corpora spanning over 1000 language pairs using state-of-the-art bitext mining and automated LLM-assessed translation evaluation. Due to our advanced, automated method of bitext dataset generation, the resulting bilingual corpora demonstrate higher translation quality compared to similar datasets. WebFAQ and all associated resources are publicly available on GitHub and HuggingFace. Michael Dinzinger, Laura Caspari, Kanishka Ghosh Dastidar, Jelena Mitrovic, Michael Granitzer |
SIGIR | 5 |
| 2024 | The First International Workshop on Open Web Search (WOWS)
Sheikh Mastura Farzana, Maik Fröbe, Michael Granitzer, Gijs Hendriksen, Djoerd Hiemstra, Martin Potthast, Saber Zerhoudi |
ECIR (5) | 3 |
| 2024 | The Open Web Index - Crawling and Indexing the Web for Public Use
Gijs Hendriksen, Michael Dinzinger, Sheikh Mastura Farzana, Noor Afshan Fathima, Maik Fröbe, Sebastian Heineking, Saber Zerhoudi, Michael Granitzer, Matthias Hagen, Djoerd Hiemstra, Martin Potthast, Benno Stein 0001 |
ECIR (5) | 8 |
| 2024 | Comparative Analysis: User Interactions in Public and Private Digital Libraries Datasets
Saber Zerhoudi, Michael Granitzer |
TPDL (2) | 2 |
| 2024 | Efficient NAS with FaDE on Hierarchical Spaces
Simon Neumeyer, Julian Stier, Michael Granitzer |
IDA (2) | 3 |
| 2024 | LLMs in the Loop: Leveraging Large Language Model Annotations for Active Learning in Low-Resource Languages
Nataliia Kholodna, Sahib Julka, Mohammad Khodadadi, Muhammed Nurullah Gumus, Michael Granitzer |
ECML/PKDD (10) | 5 |
| 2024 | Impact and development of an Open Web Index for open web searchabstractAbstract Web search is a crucial technology for the digital economy. Dominated by a few gatekeepers focused on commercial success, however, web publishers have to optimize their content for these gatekeepers, resulting in a closed ecosystem of search engines as well as the risk of publishers sacrificing quality. To encourage an open search ecosystem and offer users genuine choice among alternative search engines, we propose the development of an Open Web Index (OWI). We outline six core principles for developing and maintaining an open index, based on open data principles, legal compliance, and collaborative technology development. The combination of an open index with what we call declarative search engines will facilitate the development of vertical search engines and innovative web data products (including, e.g., large language models), enabling a fair and open information space. This framework underpins the EU‐funded project OpenWebSearch.EU, marking the first step towards realizing an Open Web Index. Michael Granitzer, Stefan Voigt, Noor Afshan Fathima, Martin Golasowski, Christian Gütl, Tobias Hecking, Gijs Hendriksen, Djoerd Hiemstra, Jan Martinovic, Jelena Mitrovic, Izidor Mlakar, Stavros Moiras, Alexander Nussbaumer, Per Öster, Martin Potthast, Marjana Sencar Srdic, Sharikadze Megi, Katerina Slaninová, Benno Stein 0001, Arjen P. de Vries, Vít Vondrák, Saber Zerhoudi |
J. Assoc. Inf. Sci. Technol. | 1 |
| 2023 | Hidden in Plain Sight: Can German Wiktionary and Wordnets Facilitate the Detection of Antithesis?abstractExisting wordnets mainly focus on synonyms, while antonyms have often been neglected, especially in wordnets in languages other than English.In this paper, we show how regular expressions are used to generate an antonym resource for German by using Wiktionary as a source.This resource contains antonyms for 45499 words.The antonyms can be used to extend existing wordnets.We show that this is important by comparing our antonym resource to the antonyms in OdeNet, the only freely available German wordnet that contains antonyms for 3059 words.We demonstrate that antonyms are relevant for the detection of the rhetorical figure antithesis.This figure has been known to influence the audience by creating contradiction and using a parallel sentence structure combined with antonyms.We first detect parallelism with part-of-speech tags and then apply our rule-based antithesis detection algorithm to a dataset of the messenger service Telegram.We evaluate our approach and achieve a precision of 57 % and a recall of 45 % thus overcoming the existing approaches. Ramona Kühn, Jelena Mitrovic, Michael Granitzer |
GWC | 3 |
| 2022 | The SimIIR 2.0 Framework: User Types, Markov Model-Based Interaction Simulation, and Advanced Query GenerationabstractSimulated user retrieval system interactions enable studies with controlled user behavior. To this end, the SimIIR framework offers static, rule-based methods. We present an extended SimIIR 2.0 version with new components for dynamic user type-specific Markov model-based interactions and more realistic query generation. A flexible modularization ensures that the SimIIR 2.0 framework can serve as a platform to implement, combine, and run the growing number of proposed search behavior and query simulation ideas. Saber Zerhoudi, Sebastian Günther 0002, Kim Plassmeier, Timo Borst, Christin Seifert, Matthias Hagen, Michael Granitzer |
CIKM | 7 |
| 2022 | Reconciliation of Mental Concepts with Graph Neural Networks
Lorenz Wendlinger, Gerd Hübscher, Andreas Ekelhart, Michael Granitzer |
DEXA (2) | 4 |
| 2022 | Evaluating Simulated User Interaction and Search Behaviour
Saber Zerhoudi, Michael Granitzer, Christin Seifert, Jörg Schlötterer |
ECIR (2) | 2 |
| 2022 | Simulating User Querying Behavior Using Embedding Space Alignment
Saber Zerhoudi, Michael Granitzer |
TPDL | 2 |
| 2022 | Network Analysis of German COVID-19 Related Discussions on Telegram
Valentin Peter, Ramona Kühn, Jelena Mitrovic, Michael Granitzer, Hannah Schmid-Petri |
NLDB | 4 |
| 2022 | Deep Active Learning for Detection of Mercury's Bow Shock and Magnetopause Crossings
Sahib Julka, Nikolas Kirschstein, Michael Granitzer, Alexander Lavrukhin, Ute V. Amerstorfer |
ECML/PKDD (4) | 3 |
| 2022 | NAG: neural feature aggregation framework for credit card fraud detectionabstractAbstract The state-of-the-art feature-engineering method for fraud classification of electronic payments uses manually engineered feature aggregates, i.e., descriptive statistics of the transaction history. However, this approach has limitations, primarily that of being dependent on expensive human expert knowledge. There have been attempts to replace manual aggregation through automatic feature extraction approaches. They, however, do not consider the specific structure of the manual aggregates. In this paper, we define the novel Neural Aggregate Generator (NAG), a neural network-based feature extraction module that learns feature aggregates end-to-end on the fraud classification task. In contrast to other automatic feature extraction approaches, the network architecture of the NAG closely mimics the structure of feature aggregates. Furthermore, the NAG extends learnable aggregates over traditional ones through soft feature value matching and relative weighting of the importance of different feature constraints. We provide a proof to show the modeling capabilities of the NAG. We compare the performance of the NAG to the state-of-the-art approaches on a real-world dataset with millions of transactions. More precisely, we show that features generated with the NAG lead to improved results over manual aggregates for fraud classification, thus demonstrating its viability to replace them. Moreover, we compare the NAG to other end-to-end approaches such as the LSTM or a generic CNN. Here we also observe improved results. We perform a robust evaluation of the NAG through a parameter budget study, an analysis of the impact of different sequence lengths and also the predictions across days. Unlike the LSTM or the CNN, our approach also provides further interpretability through the inspection of its parameters. Kanishka Ghosh Dastidar, Johannes Jurgovsky, Wissam Siblini, Michael Granitzer |
Knowl. Inf. Syst. | 4 |
| 2021 | Exploring Semantic Similarity Between German Legal Texts and Referred Laws
Harshil Darji, Jelena Mitrovic, Michael Granitzer |
IC3K | 3 |
| 2021 | DeepGG: A Deep Graph Generator
Julian Stier, Michael Granitzer |
IDA | 2 |
| 2021 | Methods for Automatic Machine-Learning Workflow Analysis
Lorenz Wendlinger, Emanuel Berndl, Michael Granitzer |
ECML/PKDD (5) | 3 |
| 2021 | Automated identification of bias inducing words in news articles using linguistic and context-oriented featuresabstractMedia has a substantial impact on public perception of events, and, accordingly, the way media presents events can potentially alter the beliefs and views of the public. One of the ways in which bias in news articles can be introduced is by altering word choice. Such a form of bias is very challenging to identify automatically due to the high context-dependence and the lack of a large-scale gold-standard data set. In this paper, we present a prototypical yet robust and diverse data set for media bias research. It consists of 1,700 statements representing various media bias instances and contains labels for media bias identification on the word and sentence level. In contrast to existing research, our data incorporate background information on the participants’ demographics, political ideology, and their opinion about media in general. Based on our data, we also present a way to detect bias-inducing words in news articles automatically. Our approach is feature-oriented, which provides a strong descriptive and explanatory power compared to deep learning techniques. We identify and engineer various linguistic, lexical, and syntactic features that can potentially be media bias indicators. Our resource collection is the most complete within the media bias research area to the best of our knowledge. We evaluate all of our features in various combinations and retrieve their possible importance both for future research and for the task in general. We also evaluate various possible Machine Learning approaches with all of our features. XGBoost, a decision tree implementation, yields the best results. Our approach achieves an F1-score of 0.43, a precision of 0.29, a recall of 0.77, and a ROC AUC of 0.79, which outperforms current media bias detection methods based on features. We propose future improvements, discuss the perspectives of the feature-based approach and a combination of neural networks and deep learning with our current system. Timo Spinde, Lada Rudnitckaia, Jelena Mitrovic, Felix Hamborg, Michael Granitzer, Bela Gipp, Karsten Donnay |
Inf. Process. Manag. | 5 |
| 2020 | Multi-task Network Embedding with Adaptive Loss WeightingabstractNetwork embedding is to learn low-dimensional representations of nodes which mostly preserve the network topological structure. In real-world networks, however, nodes are often associated with a rich set of attributes and labels which are potentially valuable in seeking more effective vector representations. To properly utilize this information, we propose a Joint Autoencoders framework for Multi-task network Embedding (JAME), which aims to encode a shared representation of local network structure, node attributes, and available node labels. Jointly embedding via multi-task learning is strongly dependent on the relative weighting between each task's loss function. Tuning these weights by hand is an expensive and difficult process, making multi-task learning prohibitive in practice. Therefore, we define an adaptive loss weighting layer capable of learning an optimal combination of loss weights during model training. This allows to dynamically updates task weights for controlling the influence of individual tasks based on task difficulty. Empirical evaluations on three real-world datasets demonstrate effectiveness of JAME compared to the relevant baseline methods. Fatemeh Salehi Rizi, Michael Granitzer |
ASONAM | 2 |
| 2020 | Influence of Random Walk Parametrization on Graph Embeddings
Fabian Schliski, Jörg Schlötterer, Michael Granitzer |
ECIR (2) | 3 |
| 2020 | NAG: Neural feature aggregation framework for credit card fraud detectionabstractThe state-of-the-art feature-engineering method for fraud classification of electronic payments uses manually engineered feature aggregates, i.e. descriptive statistics of the transaction history. However, this approach has limitations, primarily that of being dependent on expensive human expert knowledge. There have been attempts to replace manual aggregation through automatic feature extraction approaches. They, however, do not consider the specific structure of the manual aggregates. In this paper, we define the novel Neural Aggregate Generator (NAG), a neural network based feature extraction module that learns feature aggregates end-to-end on the fraud classification task. In contrast to other automatic feature extraction approaches, the network architecture of the NAG closely mimics the structure of feature aggregates. Furthermore, the NAG extends learnable aggregates over traditional ones through soft feature value matching, and relative weighting of the importance of different feature constraints. We compare the performance of the NAG to the state-of-the-art approaches on a real-world dataset with millions of transactions. More precisely, we show that features generated with the NAG lead to improved results over manual aggregates for fraud classification, thus demonstrating its viability to replace them. Moreover, we compare the NAG to other automatic approaches such as the LSTM or a generic CNN. Here we also observe improved results, with the NAG requiring far less parameters. Unlike the LSTM or the CNN, our approach also provides further interpretability through the inspection of its parameters. Kanishka Ghosh Dastidar, Johannes Jurgovsky, Wissam Siblini, Liyun He-Guelton, Michael Granitzer |
ICDM | 5 |
| 2018 | Shortest Path Distance Approximation Using Deep Learning TechniquesabstractComputing shortest path distances between nodes lies at the heart of many graph algorithms and applications. Traditional exact methods such as breadth-first-search (BFS) do not scale up to contemporary, rapidly evolving today's massive networks. Therefore, it is required to find approximation methods to enable scalable graph processing with a significant speedup. In this paper, we utilize vector embeddings learnt by deep learning techniques to approximate the shortest paths distances in large graphs. We show that a feedforward neural network fed with embeddings can approximate distances with relatively low distortion error. The suggested method is evaluated on the Facebook, BlogCatalog, Youtube and Flickr social networks. Fatemeh Salehi Rizi, Jörg Schlötterer, Michael Granitzer |
ASONAM | 3 |
| 2018 | Collection-Document Summaries
Nils Witt, Michael Granitzer, Christin Seifert |
ECIR | 2 |
| 2016 | Evaluating Memory Efficiency and Robustness of Word Embeddings
Johannes Jurgovsky, Michael Granitzer, Christin Seifert |
ECIR | 2 |
| 2016 | Supporting Web Surfers in Finding Related Material in Digital Library Repositories
Jörg Schlötterer, Christin Seifert, Michael Granitzer |
TPDL | 3 |
| 2016 | DoSeR - A Knowledge-Base-Agnostic Framework for Entity Disambiguation Using Semantic Embeddings
Stefan Zwicklbauer, Christin Seifert, Michael Granitzer |
ESWC | 3 |
| 2016 | Robust and Collective Entity Disambiguation through Semantic EmbeddingsabstractEntity disambiguation is the task of mapping ambiguous terms in natural-language text to its entities in a knowledge base. It finds its application in the extraction of structured data in RDF (Resource Description Framework) from textual documents, but equally so in facilitating artificial intelligence applications, such as Semantic Search, Reasoning and Question & Answering. We propose a new collective, graph-based disambiguation algorithm utilizing semantic entity and document embeddings for robust entity disambiguation. Robust thereby refers to the property of achieving better than state-of-the-art results over a wide range of very different data sets. Our approach is also able to abstain if no appropriate entity can be found for a specific surface form. Our evaluation shows, that our approach achieves significantly (>5%) better results than all other publicly available disambiguation algorithms on 7 of 9 datasets without data set specific tuning. Moreover, we discuss the influence of the quality of the knowledge base on the disambiguation accuracy and indicate that our algorithm achieves better results than non-publicly available state-of-the-art algorithms. Stefan Zwicklbauer, Christin Seifert, Michael Granitzer |
SIGIR | 3 |
| 2015 | From General to Specialized Domain: Analyzing Three Crucial Problems of Biomedical Entity Disambiguation
Stefan Zwicklbauer, Christin Seifert, Michael Granitzer |
DEXA (1) | 3 |
| 2015 | From Context-Aware to Context-Based: Mobile Just-In-Time Retrieval of Cultural Heritage Objects
Jörg Schlötterer, Christin Seifert, Michael Granitzer |
ECIR | 4 |
| 2015 | Comparing Recursive Autoencoder and Convolutional Network for Phrase-Level Sentiment Polarity Classification
Johannes Jurgovsky, Michael Granitzer |
NLDB | 2 |
| 2014 | Discovery and Visual Analysis of Linked Data for Humans
Vedran Sabol, Gerwald Tschinkel, Eduardo E. Veas, Patrick Höfler, Belgin Mutlu, Michael Granitzer |
ISWC (1) | 6 |
| 2012 | Dynamic Topography Information Landscapes - An Incremental Approach to Visual Knowledge Discovery
Kamran Ali Ahmad Syed, Mark Kröll, Vedran Sabol, Arno Scharl, Stefan Gindl, Michael Granitzer, Albert Weichselbraun |
DaWaK | 6 |
| 2010 | Analysis of structural relationships for hierarchical cluster labelingabstractCluster label quality is crucial for browsing topic hierarchies obtained via document clustering. Intuitively, the hierarchical structure should influence the labeling accuracy. However, most labeling algorithms ignore such structural properties and therefore, the impact of hierarchical structures on the labeling accuracy is yet unclear. In our work we integrate hierarchical information, i.e. sibling and parent-child relations, in the cluster labeling process. We adapt standard labeling approaches, namely Maximum Term Frequency, Jensen-Shannon Divergence, Chi Square Test, and Information Gain, to take use of those relationships and evaluate their impact on 4 different datasets, namely the Open Directory Project, Wikipedia, TREC Ohsumed and the CLEF IP European Patent dataset. We show, that hierarchical relationships can be exploited to increase labeling accuracy especially on high-level nodes. Markus Muhr, Roman Kern, Michael Granitzer |
SIGIR | 3 |
| 2009 | A Competitive Learning Approach to Instance Selection for Support Vector Machines
Mario Zechner, Michael Granitzer |
KSEM | 2 |