Zubnet AIAprenderWiki › Knowledge Graph
Fundamentos

Knowledge Graph

KG, Ontology
Una representación estructurada del conocimiento como una red de entidades (nodos) conectadas por relaciones (aristas). «París (entidad) es la capital de (relación) Francia (entidad).» Los knowledge graphs codifican hechos de una forma que soporta razonamiento, consulta y descubrimiento. El Knowledge Graph de Google, Wikidata, y los knowledge graphs empresariales impulsan búsqueda, recomendaciones e integración de datos.

Por qué importa

Los knowledge graphs complementan los LLMs proveyendo hechos estructurados y verificables que los LLMs pueden consultar en vez de alucinar. Mientras los LLMs almacenan conocimiento implícitamente en pesos (y a veces lo tienen mal), los knowledge graphs lo almacenan explícitamente en triples que pueden verificarse y actualizarse. La combinación de LLMs (para entender lenguaje natural) y KGs (para anclar en hechos) es un patrón poderoso para IA empresarial.

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.

Conceptos relacionados

← Todos los términos
← Knowledge Editing KV Cache →