Pular para o conteĂşdo principal

Reasoning with contextual graphs - Leitura de Artigos

Reasoning with contextual graphs
Patrick Brezillon *, Laurent Pasquier, Jean-Charles Pomerol
Received 15 December 1999; accepted 15 October 2000

Abstract

... model highly contextual reasoning ... introduce the notion of contextual graph to take into account temporal and context-based reasoning. This model relies on observed reasoning modes in which the context and its dynamics are essential.

Introduction

[SART e incidentes de controle de tráfego]

... three types of context, namely, the external context, the contextual knowledge and the proceduralized context. These three types of context allow to model the various information needed at each step of the incident resolution.

[Divisão em três tipos: contexto do conhecimento (a ser usado para a tomada de decisão), contexto externo (parte não utilizada mas ainda assim necessária para contextualizar completamente a resposta) e contexto procedural (parte do contexto do conhecimento que está sendo usado em um ponto específico da tomada de decisão)]

Context and reasoning

... we defined contextual knowledge as the part of the context that is relevant in a given situation for a given operator .... This may be seen as the subset of the context in which the operator can find every chunk of knowledge for reasoning about or interpreting and explaining the situation. The complementary part in the context is called external context.

[Contexto do conhecimento é a parte do contexto que o usuário levará em consideração para avaliar a validade e a utilidade das afirmações contextualizadas recuperadas. Este contexto pode ou não ter sido especificado na consulta. Se não foi especificado e foi usado um contexto default, este será explícito na resposta. As outras dimensões contextuais seriam contexto externo. Mas a melhor resposta possível irá recuperar todo o contexto associado representado e explicitamente modelado no KG, independente de ser externo ou não.]

... the proceduralized context as the proceduralized part of the contextual knowledge, which is considered explicitly, with causal and consequential links, at a given step of the problem solving. Indeed, the operators do not consider at each moment all the contextual pieces of knowledge during an incident solving. The proceduralized context is the part of the contextual knowledge on which the operators are focusing on at a given step of the incident solving ...

[Parte do contexto do conhecimento. Contexto é composto de contexto do conhecimento e contexto externo e o contexto do conhecimento é subdividido em contexto procedural, ou seja, o que está sendo usado no momento para a tomada de decisão.]

Decision tree representation of the reasoning

In some cases, especially at the beginning of the tree, making decision under uncertainty is probably interesting, but by trying to gather relevant information the operators endeavor to make decision under certainty.

[A certeza aumenta a medida que se desloca para a folha da árvore]

Contextual graph representation of the reasoning

The contextual graph is intended to represent the part of the context that we have denoted proceduralized context, i.e., context chunks ready to be used for action.

[Este contexto Ă© o da tarefa, da tomada de decisĂŁo]

The proceduralization of the contextual knowledge is a process that makes explicit the links, especially the causal and consequential links, between contextual knowledge chunks and as such the links become a part of the proceduralized context.

Validation and implementation

At the beginning, we tried to represent the operators' knowledge by decision trees, but a further study quickly shown that the problem was not really a problem of decision under uncertainty but a problem of diagnosing, as soon as possible, the real state of nature.

Conclusion


Comentários

  1. NĂŁo Ă© sobre KG mas a divisĂŁo entre contexto externo, contexto do conhecimento e contexto procedural Ă© interessante.

    Tentando trazer para a tarefa de busca exploratória, acredito que o contexto do conhecimento no nosso caso seria a parte do contexto que o usuário levará em consideração para avaliar a validade e a utilidade das afirmações contextualizadas recuperadas. Este contexto pode ou não ter sido especificado na consulta. Se não foi especificado e foi usado um contexto default, este estará explícito na resposta.

    Mas a melhor resposta possível irá recuperar todo o contexto, representado e explicitamente modelado no KG, associado às afirmações então as outras dimensões contextuais não referenciadas na consulta poderiam ser consideradas contexto externo.

    O contexto procedural nĂŁo estaria sendo modelado pq o KG nĂŁo cobriria a modelagem do processo de decisĂŁo referente tarefa que motivou a busca exploratĂłria.

    ResponderExcluir

Postar um comentário

Sinta-se a vontade para comentar. CrĂ­ticas construtivas sĂŁo sempre bem vindas.

Postagens mais visitadas deste blog

Connected Papers: Uma abordagem alternativa para revisĂŁo da literatura

Durante um projeto de pesquisa podemos encontrar um artigo que nos identificamos em termos de problema de pesquisa e tambĂ©m de solução. EntĂŁo surge a vontade de saber como essa área de pesquisa se desenvolveu atĂ© chegar a esse ponto ou quais desdobramentos ocorreram a partir dessa solução proposta para identificar o estado da arte nesse tema. Podemos seguir duas abordagens:  realizar uma revisĂŁo sistemática usando palavras chaves que melhor caracterizam o tema em bibliotecas digitais de referĂŞncia para encontrar artigos relacionados ou realizar snowballing ancorado nesse artigo que identificamos previamente, explorando os artigos citados (backward) ou os artigos que o citam (forward)  Mas a ferramenta Connected Papers propõe uma abordagem alternativa para essa busca. O problema inicial Ă© dado um artigo de interesse, precisamos encontrar outros artigos relacionados de "certa forma". Find different methods and approaches to the same subject Track down the state of the art rese...

Knowledge Graphs as a source of trust for LLM-powered enterprise question answering - Leitura de Artigo

J. Sequeda, D. Allemang and B. Jacob, Knowledge Graphs as a source of trust for LLM-powered enterprise question answering, Web Semantics: Science, Services and Agents on the World Wide Web (2025), doi: https://doi.org/10.1016/j.websem.2024.100858. 1. Introduction These question answering systems that enable to chat with your structured data hold tremendous potential for transforming the way self service and data-driven decision making is executed within enterprises. Self service and data-driven decision making in organizations today is largly made through Business Intelligence (BI) and analytics reporting. Data teams gather the original data, integrate the data, build a SQL data warehouse (i.e. star schemas), and create BI dashboards and reports that are then used by business users and analysts to answer specific questions (i.e. metrics, KPIs) and make decisions. The bottleneck of this approach is that business users are only able to answer questions given the views of existing dashboa...

Knowledge Graph Toolkit (KGTK)

https://kgtk.readthedocs.io/en/latest/ KGTK represents KGs using TSV files with 4 columns labeled id, node1, label and node2. The id column is a symbol representing an identifier of an edge, corresponding to the orange circles in the diagram above. node1 represents the source of the edge, node2 represents the destination of the edge, and label represents the relation between node1 and node2. >> Quad do RDF, definir cada tripla como um grafo   KGTK defines knowledge graphs (or more generally any attributed graph or hypergraph ) as a set of nodes and a set of edges between those nodes. KGTK represents everything of meaning via an edge. Edges themselves can be attributed by having edges asserted about them, thus, KGTK can in fact represent arbitrary hypergraphs. KGTK intentionally does not distinguish attributes or qualifiers on nodes and edges from full-fledged edges, tools operating on KGTK graphs can instead interpret edges differently if they so desire. In KGTK, e...