Zubnet AIAprenderWiki › GNN
Models

GNN

Graph Neural Network
Redes neuronales diseñadas para operar sobre datos estructurados en grafo — datos donde las entidades están conectadas por relaciones (redes sociales, moléculas, grafos de conocimiento, redes de transporte). Los GNNs aprenden pasando mensajes entre nodos conectados, permitiendo a cada nodo actualizar su representación según sus vecinos. Manejan datos que no encajan limpiamente en grillas (imágenes) o secuencias (texto).

Por qué importa

No toda la data es texto o imágenes. Redes sociales, estructuras moleculares, sistemas de recomendación, redes de detección de fraude y rutas logísticas son todas naturalmente estructuradas en grafo. Los GNNs son la herramienta correcta cuando las relaciones entre entidades son tan importantes como las entidades mismas. Descubrimiento de drogas, análisis de redes sociales y predicción de tráfico todos dependen de GNNs.

Deep Dive

The core operation in a GNN is message passing: each node collects information from its neighbors, aggregates it (sum, mean, or attention-weighted), and updates its own representation. After K rounds of message passing, each node's representation encodes information about its K-hop neighborhood. Graph Convolutional Networks (GCN), GraphSAGE, and Graph Attention Networks (GAT) are the most common architectures, differing in how they aggregate neighbor information.

Applications

Drug discovery: molecules are graphs (atoms = nodes, bonds = edges). GNNs predict molecular properties, binding affinity, and toxicity by learning from the molecular graph structure. Social networks: GNNs detect communities, predict links, and identify influential nodes. Recommendation systems: users and items form a bipartite graph, and GNNs predict which items a user would like based on graph structure. Fraud detection: transaction networks reveal suspicious patterns that GNNs can learn to identify.

Transformers as Graph Networks

There's a deep connection between Transformers and GNNs: self-attention can be viewed as message passing on a fully connected graph (every token attends to every other token). GNNs operate on sparse graphs (each node only connects to its actual neighbors). This connection has inspired Graph Transformers that combine the expressiveness of Transformers with the efficiency of sparse graph structures, and has led to cross-pollination of ideas between the two communities.

Conceptos relacionados

← Todos los términos
← GGUF Google DeepMind →