Category: Data Science

Contextual Bandit Algorithms

Contextual bandit algorithms are a type of machine learning method used to make decisions based on both past results and current information. They help choose the best action by considering the context or situation at each decision point. These algorithms learn from feedback over time to improve future choices, balancing between trying new actions and…

Process Discovery Algorithms

Process discovery algorithms are computer methods used to automatically create a process model by analysing data from event logs. These algorithms look for patterns in the recorded steps of real-life processes, such as how orders are handled in a company. The resulting model helps people understand how work actually happens, spot inefficiencies, and suggest improvements.

Knowledge Graph Reasoning

Knowledge graph reasoning is the process of drawing new conclusions or finding hidden connections within a knowledge graph. A knowledge graph is a network of facts, where each fact links different pieces of information. Reasoning uses rules or algorithms to connect the dots, helping computers answer complex questions or spot patterns that are not immediately…

Subgraph Matching Algorithms

Subgraph matching algorithms are methods used to find if a smaller graph, called a subgraph, exists within a larger graph. They compare the structure and connections of the nodes and edges to identify matches. These algorithms are important in fields where relationships and patterns need to be found within complex networks, such as social networks,…

Graph-Based Recommendation Systems

Graph-Based Recommendation Systems use graphs to model relationships between users, items, and other entities. In these systems, users and items are represented as nodes, and their interactions, such as likes or purchases, are shown as edges connecting them. By analysing the structure of these graphs, the system can find patterns and suggest items to users…

Off-Policy Evaluation

Off-policy evaluation is a technique used to estimate how well a new decision-making strategy would perform, without actually using it in practice. It relies on data collected from a different strategy, called the behaviour policy, to predict the outcomes of the new policy. This is especially valuable when testing the new strategy directly would be…