• Deutsch
Login

Open Access

  • Home
  • Search
  • Browse
  • Publish
  • FAQ
Schließen
  • Dewey Decimal Classification
  • 0 Informatik, Informationswissenschaft, allgemeine...
  • 00 Informatik, Wissen, Systeme

004 Datenverarbeitung; Informatik

Refine

Author

  • Granitzer, Michael (7)
  • Berger, Christian (3)
  • Herbold, Steffen (3)
  • Parra Rodriguez, Juan D. (3)
  • Posegga, Joachim (3)
  • Zwicklbauer, Stefan (3)
  • Brunie, Lionel (2)
  • Fellicious, Christofer (2)
  • Fraser, Gordon (2)
  • Ghosh Dastidar, Kanishka (2)
+ more

Year of publication

  • 2026 (2)
  • 2025 (20)
  • 2024 (15)
  • 2023 (13)
  • 2022 (3)
  • 2021 (4)
  • 2020 (7)
  • 2019 (12)
  • 2018 (6)
  • 2017 (7)
+ more

Document Type

  • Doctoral Thesis (128)
  • Article (25)
  • Conference Proceeding (7)
  • Other (3)
  • Master's Thesis (1)
  • Preprint (1)

Language

  • English (141)
  • German (24)

Has Fulltext

  • yes (165)

Is part of the Bibliography

  • no (165)

Keywords

  • Computersicherheit (7)
  • Graphenzeichnen (7)
  • Software Engineering (6)
  • Graph (5)
  • Multimedia (5)
  • Programmanalyse (5)
  • machine learning (5)
  • Information Retrieval (4)
  • Modellierung (4)
  • Qualitätssicherung (4)
+ more

Institute

  • Fakultät für Informatik und Mathematik (92)
  • Mitarbeiter Lehrstuhl/Einrichtung der Fakultät für Informatik und Mathematik (50)
  • Sonstiger Autor der Fakultät für Informatik und Mathematik (8)
  • Wirtschaftswissenschaftliche Fakultät (8)
  • Sozial- und Bildungswissenschaftliche Fakultät (3)
  • Geistes- und Kulturwissenschaftliche Fakultät (2)
  • Mitarbeiter Lehrstuhl/Einrichtung der Wirtschaftswissenschaftlichen Fakultät (2)
  • Institut für IT-Sicherheit und Sicherheitsrecht (ISL) (1)
  • Juristische Fakultät (1)

165 search hits

  • 1 to 10
  • BibTeX
  • CSV
  • RIS
  • XML
  • 10
  • 20
  • 50
  • 100

Sort by

  • Year
  • Year
  • Title
  • Title
  • Author
  • Author
Community Question Answering : an Investigation into the Influence of Question Expansion based on User's Explicit Information on Learning to Rank Q&A Models (2026)
Sousa Maia, Macedo
Question Answering (Q&A) community forums provide an open and collaborative environment where users can post subjective questions and answers based on their life experiences or knowledge of specific domains. User interaction in online forums generates thousands of comments on different subjects, resulting in a massive amount of rich text every year. Posts in Q\&A online communities contain rich information that helps NLP scientists and developers propose approaches to help questioners find answers to their questions based on previously submitted similar questions. However, community questions are short and require additional textual information for automatic matching with the relevant long answers. Explicit information about the question is crucial for accurately predicting the ranked list of answer candidates. Community answer retrieval aims to answer new user questions by leveraging answers from previous users' questions. Automated Learning-to-Rank (LTR) models for Community Question Answering (CQA) require additional explicit information to appropriately expand questions, enabling the identification of an accurate ranked list of answer candidates based on their relevance to the question. This doctoral thesis proposes an investigation into the importance of different explicit information for expanding user questions in transformer-based ranking models. User tags and question descriptions are the explicit information I observed in this study to expand user question information. A key contribution of this study is a novel automated tag classification approach for identifying domain-specific tags in question descriptions, which enables a comparison of ranking model performance by incorporating both user- and automatically selected tags as inputs. The proposed automatic tag classification helps users find adequate tags to summarise a long question description into a tag set. This study also presents new annotated datasets containing thousands of user questions in two domains (personal finances and home improvements). This thesis concludes that incorporating explicit user information for question expansion enhances the predictive performance of LTR models in sorting the answer candidate list by relevance. Among the models employed in this study, those using question descriptions as additional information to expand user questions outperform other input configurations, achieving precision rates exceeding 90\% for rank-aware measures such as Mean Reciprocal Rank (MRR) and Mean Average Precision (MAP). The experiments further reveal that including automatically selected tags and user tags as part of the input yields comparable performance across all LTR CQA models. This study helps retrieval systems answer new questions based on corresponding comments used to answer old questions.
Full-Stack Change Management for Database Systems (2026)
Fruth, Michael
Database systems are at the core of modern applications, providing essential services for storing, querying, and managing data. However, they do not remain static; they continuously evolve in response to external changes. Two primary external factors drive this evolution. On the one hand, database vendors release new versions of the database software, introducing new features, bug fixes, and security patches, resulting in the ongoing evolution of the database binary. On the other hand, developers modify the database schema, which defines the structure of the stored data, to accommodate new data structures required by client applications. This cumulative dissertation investigates the challenges of binary evolution and schema evolution in database systems. These two types of evolution represent disruptive changes at both ends of the stack of a database system from the perspective of externally driven changes. We examine various families of database systems, including relational, NoSQL document and key-value stores, as well as distributed variants. The state-of-the-art approach to address the binary evolution of a database system involves a restart: The database system is shut down, the binary replaced, and restarted. While this approach may be acceptable for full feature upgrades, it poses significant overhead when fixing bugs or patching vulnerabilities. Each restart leads to service interruptions and the loss of the in-memory state. Moreover, such downtimes are particularly problematic for cloud providers offering managed Database-as-a-Service. They cannot predict when a downtime is acceptable for customers, making it challenging to promptly patch critical vulnerabilities without disrupting service. To overcome these issues, we investigate live patching as a radically novel approach to binary evolution. Live patching allows code changes to be applied in-memory to the running application without necessitating a restart. We provide the first systematic evaluation of live patching for database systems. Using the relational database management system MariaDB as a case study, our comprehensive evaluation of single-instance, multi-threaded database systems demonstrates that live patching is a viable alternative to conventional restarts. We examine the interplay between various query workloads and live patching methods, analyzing their impact on transaction throughput and tail latencies. Additionally, we explore how the size of the in-memory state impacts live patching, using the in-memory key-value store Redis, and evaluate real-world patches applied to both MariaDB and Redis. Our findings provide insights into database-specific factors that influence live patching. These insights enable informed decisions about the latency overhead clients may experience during live patching. While single-instance database systems suffer complete service outages during restarts, database clusters are designed to mitigate such disruptions. When a node is taken offline, its workload can be redistributed to other nodes. The state-of-the-art approach to patch a database cluster is a rolling update, where each node is sequentially shut down, patched, and restarted, with other nodes taking over the workload of the node undergoing maintenance. Ideally, this patching process should (1) incur no downtime, (2) avoid noticeable performance degradations such as latency spikes, (3) maintain stable resource consumption, and (4) be executed promptly. Unfortunately, conventional rolling updates often fail to meet these goals. To address these limitations, we extend live patching to database clusters, demonstrating its feasibility and applicability using the distributed in-memory key-value store Redis Cluster as a case study. In a systematic evaluation, we demonstrate that our live patching approach satisfies all four aforementioned requirements, whereas conventional rolling updates do not. To enable seamless live patching, we develop and evaluate two patch distribution mechanisms. Both automate patch distribution across the cluster, with one prioritizing distribution speed and the other designed to accommodate the elasticity of the cluster. Finally, we offer general guidelines for integrating live patching and automatic patch distribution into distributed database systems, demonstrating their successful application using a primary-replica setup of the relational database management system PostgreSQL. To provide a holistic change management approach for database systems, it is crucial to address not only binary evolution but also the evolution of the database schema. The database schema defines the structure of stored data and serves as a contract between the database system and the applications that interact with it. When it evolves, it raises a critical question: Are the schema changes backward compatible, or do they introduce breaking changes for client applications? Unlike relational database management systems, NoSQL database systems do not follow a unified schema standard; instead, schemas are tailored to the specific data format being stored. For semi-structured data, JavaScript Object Notation (JSON) is widely used, with JSON Schema serving as the de-facto schema language for JSON data. To address the challenge of schema evolution for JSON Schema-based database schemas, we explore the concept of JSON Schema containment. JSON Schema containment can be used to decide whether the language defined by one JSON Schema is a subset of another. Our evaluation of existing JSON Schema containment checkers, applied to a diverse set of real-world schemas, reveals significant limitations. These tools often lack support for advanced JSON Schema features or yield inconsistent results, and therefore lack in consensus. Recognizing the absence of comprehensive schema management solutions for JSON-based NoSQL document stores that use JSON Schema for data validation, we propose a novel DevOps workflow implemented through our prototype tool, Josch. Josch is geared for MongoDB and integrates third-party JSON Schema extraction and containment checking solutions to assist developers and DevOps teams in efficiently managing schema changes. It enables the extraction of JSON Schemas from existing JSON documents when an explicit schema is absent and employs containment checking to ensure that schema changes remain backward compatible, thereby preventing breaking changes for client applications. In summary, our research provides a comprehensive approach to managing externally driven changes in database systems. By unifying our research on live patching for binary evolution with our solutions for schema evolution, we enable seamless updates to the database binary without disrupting services and protect client applications from breaking changes due to schema modifications.
Multidimensional Wavelets and Neural Networks (2025)
Schiermeier, Kathrin
The construction of scaling functions and wavelets in multiple dimensions and for arbitrary scaling matrices is a challenging task entailing some complexities. Existing approaches mainly focus on the two-dimensional case using dyadic or quincunx sampling. This thesis aims to develop a method to construct multidimensional scaling and wavelet filters yielding orthogonal scaling functions and wavelets under the usage of convolutional neural networks. We start by recalling substantial fundamentals of ideals, modules, Fourier analysis, filterbanks and multiresolution analyses, where the mentioned concepts are already considered in an arbitrary dimensional setting to prepare the proof of the main result. There, we show the connection between multivariate scaling functions and multidimensional filters possessing certain properties. This enables us to construct scaling functions and corresponding wavelets by discrete filter design. Exploiting the link between the discrete wavelet decomposition, filterbanks and neural networks, we utilize the latter to do so. Being the main difficulty of this process, we especially focus on the Cohen criterion, which concerns the zeros of the Fourier transform of the scaling filter in modulus representing a multivariate trigonometric polynomial. After transferring the Bernstein inequality for univariate trigonomic polynomials to multiple dimensions, we present a method to derive a finite set of inequality constraints implying that the Cohen criterion holds true for a given multivariate cosine sum. Afterwards, we introduce neural networks and TensorFlow as the main tools to execute the described approach, formulate the described objective as an optimization problem and present some smaller numerical experiments and their results. A second objective of this thesis is the construction of filters possessing a unimodular modulation vector and therefore the ability to be completed to a perfect reconstruction filterbank. Both - the construction and the filterbank completion - can also be considered in a neural network framework as we will detail in the last section of this thesis alongside with the presentation of corresponding numerical experiments. In the context of filterbank completion, a further observation which allows to complete any given interpolatory filter to a perfect reconstruction filterbank in a very intuitive and simple way is presented. Furthermore, we explain that any given unimodular filter can be rendered interpolatory through prefiltering.
Asset Tokenization and Authentication in the Industrial Metaverse (2025)
Prummer, Michael
The Industrial Revolution is a crucial development step in human history that started three centuries ago and is still ongoing. It continually influences and shapes the globalized world. Today, industries account for 20% of carbon dioxide emissions worldwide and require more than a third of global energy consumption. Current problems, such as climate change, increasing waste, and pollution, require simultaneous optimization across all industrial domains, infrastructure, and systems as they depend on each other. The global industry faces the immense challenges of providing for a surging world population expected to peak in the mid-2080s with 10.4 billion people, as reported by the United Nations. Hence, industries are expected to become less resource-intensive, sustainable, and more resilient to disrupted supply chains while producing for a growing population for the next decades. The Fourth Industrial Revolution, or Industry 4.0 (I4.0), started around 2010 and is still an ongoing transformation of industrial processes towards digitalization, creating smart factories referring to the digital data integration of the entire manufacturing cycle. I4.0 is incredibly information-intensive and requires immense data to simulate and predict essential operations based on a digital shadow of the factory, a so-called digital twin. The Metaverse is considered a digitalization megatrend merging digital and physical worlds, creating immersive experiences and new opportunities for interaction and innovation across various sectors and industries. The vision of the Metaverse promotes interconnected and interoperable real-time 3D virtual worlds that can be frictionlessly traversed while sustaining ownership of one's assets under a self-sovereign identity in a decentralized environment without platform lock-ins to a specific ecosystem. Therefore, the Metaverse creates an immersive parallel reality with collective virtually shared spaces for entertainment, social interactions, education, and a new working environment. The Industrial Metaverse synthesizes Metaverse concepts with current industrial automation, such as I4.0, to deepen the digital-physical convergence by interconnecting internal and external systems to enable decision-making and predictions based on significantly broader knowledge. An Industrial Metaverse factory is entirely mirrored to integrate digital twins of all types of equipment, assets, and other entities that can communicate vertically and horizontally, as well as the knowledge about relevant external systems and industrial core sectors. Through the comprehensive data integration of the Industrial Metaverse, AI-driven applications can predict future events, reducing system and hardware failures. Furthermore, the interconnected virtual environments create a meta-ecosystem for global collaboration, providing spaces for solving complex problems such as engineering and product design tasks, simulation of product twins, and reduced development time and costs. The connected industrial ecosystems create a token-based digital economy for exchanging data, assets, and services cross-metaverse connecting isolated data silos. Sharing digital twin resources and services with other systems enables new innovative applications and growing ecosystems. The theoretical part of this thesis defines the essential characteristics and key technologies of the Industrial Metaverse to derive a reference architecture for a decentralized system of systems, outlining the fundamental Industrial Metaverse building blocks. Interoperable data exchange, access management, and system communication are critical challenges. Especially interoperability of assets such as 3D files that come in different formats and identities must be ensured to move between virtual environments. The unique fusion of technologies leverages interconnected digital twins in the context of immersion, interaction, and collaboration for secure, autonomous-governed, decentralized industrial applications. Hence, the Industrial Metaverse requires the possibility of exchanging assets, products, and services across all systems in a secure manner. Distributed ledger technology enables tamper-proof transactions of assets and value in a decentralized token economy. Therefore, we investigate the feasibility of current tokenization methods for industrial assets, in particular, Printed Circuit Board (PCB) designs and 3D models. We contribute methods to create unique fingerprints of PCB designs to enable their exchange in the token economy. We investigate how to bind files in different formats and quality representations to the same token. A robust multi-file binding based on the copper layers of a PCB design was achieved by calculating an adaptive perceptual hash of all files. The adaptive perceptual hash was evaluated against numerous tamperings of the routing layout of a PCB, showing decent resistance to layout changes. The resulting adaptive perceptual hash can be used as an additional identification attribute in a tokenized asset. Furthermore, assets must be authenticatable and verifiable by marketplaces, manufacturers, and other participants to create trust in a decentralized environment. While assets can be tampered with to manipulate, for example, cryptographic hashes that link the file to the token, perceptual hashes can compute a perceived or functional similarity of two objects instead of the plain file integrity. Without the possibility of verifying and protecting intellectual property, mass adoption of the Metaverse and Industrial Metaverse is unlikely. Therefore, we contribute to detecting tampering attacks on 3D models by introducing a 3D perceptual hash that is robust to a set of mesh manipulations, enabling the trusted exchange and authentication of 3D data in the Metaverse.
An ICT architecture for enabling ancillary services in Distributed Renewable Energy Sources based on the SGAM framework (2022)
Stocker, Armin ; Alshawish, Ali ; Bor, Martin ; Vidler, John ; Gouglidis, Antonios ; Scott, Andrew ; Marnerides, Angelos ; De Meer, Hermann ; Hutchison, David
Smart Grids are electrical grids that require a decentralised way of controlling electric power conditioning and thereby control the production and distribution of energy. Yet, the integration of Distributed Renewable Energy Sources (DRESs) in the Smart Grid introduces new challenges with regards to electrical grid balancing and storing of electrical energy, as well as additional monetary costs. Furthermore, the future smart grid also has to take over the provision of Ancillary Services (ASs). In this paper, a distributed ICT infrastructure to solve such challenges, specifically related to ASs in future Smart Grids, is described. The proposed infrastructure is developed on the basis of the Smart Grid Architecture Model (SGAM) framework, which is defined by the European Commission in Smart Grid Mandate M/490. A testbed that provides a flexible, secure, and low-cost version of this architecture, illustrating the separation of systems and responsibilities, and supporting both emulated DRESs and real hardware has been developed. The resulting system supports the integration of a variety of DRESs with a secure two-way communication channel between the monitoring and controlling components. It assists in the analysis of various inter-operabilities and in the verification of eventual system designs. To validate the system design, the mapping of the proposed architecture to the testbed is presented. Further work will help improve the architecture in two directions; first, by investigating specific-purpose use cases, instantiated using this more generic framework; and second, by investigating the effects a realistic number and variety of connected devices within different grid configurations has on the testbed infrastructure.
Quantitative and qualitative data on historical vertebrate distributions in Bavaria 1845 (2025)
Rehbein, Malte ; Escobari, Belen ; Fischer, Sarah ; Güntsch, Anton ; Haas, Bettina ; Matheisen, Giada ; Perschl, Tobias ; Wieshuber, Alois ; Engel, Thore
Archival collections contain an underutilized wealth of biodiversity data, encapsulated in government files and other historical documents. In 1845, the Bavarian government conducted a comprehensive national survey on the occurrence of 44 selected vertebrate species across the country. The detailed expert responses from 119 forestry offices, totalling 520 handwritten pages, have been preserved in the Bavarian State Archives. In this study, we digitized, annotated, geographically referenced, and published these historical records, making them widely available as data for research and conservation planning. Our dataset, openly accessible through the Global Biodiversity Information Facility (GBIF) and Zenodo, contains 5,467 species occurrence records from 1845. Besides the binary presence/absence data, we have also published the original textual survey responses, which contain rich qualitative information, such as species abundances, population trends, habitats, forest management practices, and human-nature relationships. This information can be further processed and interpreted to address a range of questions in historical and contemporary ecology.
Parameterized complexity of vertex splitting to pathwidth at most 1 (2024)
Baumann, Jakob ; Pfretzschner, Matthias ; Rutter, Ignaz
Motivated by the planarization of 2-layered straight-line drawings, we consider the problem of modifying a graph such that the resulting graph has pathwidth at most 1. The problem Pathwidth-One Vertex Explosion (POVE) asks whether such a graph can be obtained using at most 𝑘 vertex explosions, where a vertex explosion replaces a vertex 𝑣 by deg(𝑣) degree-1 vertices, each incident to exactly one edge that was originally incident to 𝑣. For POVE, we give an FPT algorithm with running time 𝑂(4𝑘 ⋅ 𝑚) and an 𝑂(𝑘2) kernel, thereby improving over the 𝑂(𝑘6) kernel by Ahmed et al. [2] in a more general setting. Similarly, a vertex split replaces a vertex 𝑣 by two distinct vertices 𝑣1 and 𝑣2 and distributes the edges originally incident to 𝑣 arbitrarily to 𝑣1 and 𝑣2. Analogously to POVE, we define the problem variant Pathwidth-One Vertex Splitting (POVS) that uses the split operation instead of vertex explosions. Here we obtain a linear kernel and an algorithm with running time 𝑂((6𝑘 + 12)𝑘 ⋅ 𝑚). This answers an open question by Ahmed et al. [2]. Finally, we consider the problem Π-VertexSplitting (Π-VS), which generalizes the problem POVS and asks whether a given graph can be turned into a graph of a specific graph class Π using at most 𝑘 vertex splits. For graph classes Π that can be dfined in monadic second-order graph logic (MSO2), we show that the problem Π-VS can be expressed as an MSO2 formula, resulting in an FPT algorithm for Π-VS parameterized by 𝑘 if Π additionally has bounded treewidth. We obtain the same result for the problem variant using vertex explosions. [2] R. Ahmed, S.G. Kobourov, M. Kryven, An FPT algorithm for bipartite vertex splitting, in: P. Angelini, R. von Hanxleden (Eds.), Graph Drawing and Network Visualization -30th International Symposium, GD 2022, in: Lecture Notes in Computer Science, vol.13764, Springer, 2022, pp.261--268.
Bridging the gap: Applying machine learning techniques in digital forensics (2025)
Fellicious, Christofer
With the increasing adoption of virtualization technologies across various industries, virtual machines (VMs) offer cost-effective solutions for obtaining computing power without the burden of initial investment or ongoing maintenance. However, the widespread use of VMs also increases the risk of malicious actors attempting to gain unauthorized access due to the possibility of accessing the VMs via standard internet protocols. Virtual Machine Introspection (VMI) and Forensic Memory Analysis (FMA) are two key cybersecurity methods for addressing these threats. While FMA leverages digital forensic techniques to extract and analyse information from system memory to explain security incidents, VMI typically works with live systems, analysing running processes to detect real-time threats. Both approaches face a significant challenge known as the ”semantic gap,” which arises from the need to infer high-level system information from low-level data such as physical memory and CPU registers. This dissertation explores using machine learning to bridge the semantic gap in FMA and VMI applications. The research uses OpenSSH process heap dumps as a use-case to extract high-level structures, such as OpenSSH encryption keys, from raw process memory dumps. The study employs various techniques to isolate relevant memory sections, from basic memory chunking and entropy analysis to more advanced methods utilizing pointers and malloc headers. During this research study, we also identified the need for a foundation model in memory forensics. Foundation models are general purpose models trained on large amounts of data and users can later use these models to perform different tasks by finetuning the model. This research also addresses the challenge of detecting malware by analysing system-level API calls and employing custom feature engineering techniques. Given that the threat landscape is constantly evolving, we also investigate concept drift — a phenomenon where input data distribution changes affect predictive models’ performance. To mitigate the degradation in performance due to concept drift, we introduce a concept drift detection algorithm complemented by a custom sampling method that optimizes training data selection. This approach reduces the training dataset size by one-third, enhancing the efficiency of model training while maintaining high performance.
Performance analysis of large language models in the domain of legal argument mining (2023)
Zubaer, Abdullah Al ; Granitzer, Michael ; Mitrović, Jelena
Generative pre-trained transformers (GPT) have recently demonstrated excellent performance in various natural language tasks. The development of ChatGPT and the recently released GPT-4 model has shown competence in solving complex and higher-order reasoning tasks without further training or fine-tuning. However, the applicability and strength of these models in classifying legal texts in the context of argument mining are yet to be realized and have not been tested thoroughly. In this study, we investigate the effectiveness of GPT-like models, specifically GPT-3.5 and GPT-4, for argument mining via prompting. We closely study the model's performance considering diverse prompt formulation and example selection in the prompt via semantic search using state-of-the-art embedding models from OpenAI and sentence transformers. We primarily concentrate on the argument component classification task on the legal corpus from the European Court of Human Rights. To address these models' inherent non-deterministic nature and make our result statistically sound, we conducted 5-fold cross-validation on the test set. Our experiments demonstrate, quite surprisingly, that relatively small domain-specific models outperform GPT 3.5 and GPT-4 in the F1-score for premise and conclusion classes, with 1.9% and 12% improvements, respectively. We hypothesize that the performance drop indirectly reflects the complexity of the structure in the dataset, which we verify through prompt and data analysis. Nevertheless, our results demonstrate a noteworthy variation in the performance of GPT models based on prompt formulation. We observe comparable performance between the two embedding models, with a slight improvement in the local model's ability for prompt selection. This suggests that local models are as semantically rich as the embeddings from the OpenAI model. Our results indicate that the structure of prompts significantly impacts the performance of GPT models and should be considered when designing them.
Is GPT-4 a reliable rater? Evaluating consistency in GPT-4's text ratings (2023)
Hackl, Veronika ; Müller, Alexandra Elena ; Granitzer, Michael ; Sailer, Maximilian
This study reports the Intraclass Correlation Coefficients of feedback ratings produced by OpenAI's GPT-4, a large language model (LLM), across various iterations, time frames, and stylistic variations. The model was used to rate responses to tasks related to macroeconomics in higher education (HE), based on their content and style. Statistical analysis was performed to determine the absolute agreement and consistency of ratings in all iterations, and the correlation between the ratings in terms of content and style. The findings revealed high interrater reliability, with ICC scores ranging from 0.94 to 0.99 for different time periods, indicating that GPT-4 is capable of producing consistent ratings. The prompt used in this study is also presented and explained.
  • 1 to 10

DINI-Zertifikat     OPUS4 Logo

  • Contact
  • Imprint
  • Sitelinks