Zubnet AIApprendreWiki › Knowledge Graph
Fondamentaux

Knowledge Graph

KG, Ontology
Une représentation structurée de la connaissance comme un réseau d'entités (nœuds) connectées par des relations (arêtes). « Paris (entité) est la capitale de (relation) la France (entité). » Les knowledge graphs encodent les faits d'une façon qui supporte le raisonnement, la requête et la découverte. Le Knowledge Graph de Google, Wikidata, et les knowledge graphs d'entreprise alimentent la recherche, les recommandations et l'intégration de données.

Pourquoi c'est important

Les knowledge graphs complémentent les LLM en fournissant des faits structurés et vérifiables que les LLM peuvent requêter plutôt que d'halluciner. Pendant que les LLM stockent la connaissance implicitement dans les poids (et parfois se trompent), les knowledge graphs la stockent explicitement dans des triples qui peuvent être vérifiés et mis à jour. La combinaison de LLM (pour comprendre le langage naturel) et de KG (pour ancrer dans les faits) est un pattern puissant pour l'IA d'entreprise.

Deep Dive

A knowledge graph stores knowledge as (subject, predicate, object) triples: (Albert Einstein, born_in, Ulm), (Ulm, located_in, Germany). These triples form a graph where entities are nodes and relationships are edges. You can traverse the graph to answer multi-hop questions: "Where was the birthplace of the person who developed general relativity?" follows Einstein → born_in → Ulm → located_in → Germany.

KGs + LLMs

The integration of knowledge graphs with LLMs takes several forms: using KGs as a source for RAG (retrieve relevant subgraphs for a query), using LLMs to populate KGs (extract entities and relationships from text), and using KGs to verify LLM outputs (check stated facts against the graph). GraphRAG (Microsoft) uses LLMs to build a knowledge graph from documents, then queries that graph for more structured retrieval than pure vector search.

Building Knowledge Graphs

Constructing a knowledge graph requires: entity extraction (identifying people, places, concepts in text), relation extraction (identifying how entities relate), entity resolution (recognizing that "NYC," "New York City," and "The Big Apple" are the same entity), and schema design (defining what types of entities and relationships exist). LLMs have made each of these steps cheaper and more accurate, democratizing KG construction for organizations that previously couldn't afford the manual effort.

Concepts liés

← Tous les termes
← Knowledge Editing KV Cache →