* fix: replace invalid Mintlify theme 'venus' with 'mint' * docs: replace em dashes with colons across all docs files * fix: strip UTF-8 BOM from all docs files (broke frontmatter detection)
13 KiB
title, description, icon
| title | description | icon |
|---|---|---|
| Knowledge Graph Module | Graph construction, temporal models, analytics, similarity scoring, and structural embeddings. | diagram-project |
semantica.kg transforms extracted entities and relationships into structured, queryable knowledge graphs:
- Temporal nodes and edges with
valid_from/valid_untilwindows and all 13 Allen interval relations - Full graph analytics suite: centrality, community detection, path finding, link prediction
- Node2Vec structural embeddings for downstream ML and similarity scoring
- OWL-Time export and versioned snapshots via
TemporalVersionManager - Schema and constraint validation before persistence
Exported Classes
| Class | Role |
|---|---|
KnowledgeGraph |
Core graph data structure: nodes, edges, properties, temporal validity |
GraphBuilder |
Construct from entities + relationships; pass merge_entities=True to enable deduplication |
GraphBuilderWithProvenance |
Wraps GraphBuilder with optional provenance tracking; pass provenance=True to enable |
EntityResolver |
Entity deduplication and merging during graph construction |
GraphAnalyzer |
Unified analytics wrapper: runs centrality, community detection, and connectivity in one call |
ConnectivityAnalyzer |
Connected component detection, bridge identification, density, and degree statistics |
TemporalGraphQuery |
Point-in-time snapshots, temporal diffs, and all 13 Allen interval queries |
CentralityCalculator |
PageRank, degree, betweenness, closeness, eigenvector centrality |
CommunityDetector |
Louvain, Leiden, Label Propagation, and K-Clique community detection |
PathFinder |
Dijkstra, A*, BFS, and K-Shortest path algorithms |
LinkPredictor |
Preferential Attachment, Jaccard, Adamic-Adar link prediction |
NodeEmbedder |
Node2Vec structural embeddings for downstream ML |
SimilarityCalculator |
Cosine, Euclidean, Manhattan, and correlation similarity scoring |
GraphValidator |
Schema and constraint validation before persistence |
<img src="/assets/img/diagrams/kg-structure.svg" alt="Knowledge graph entity and relation structure: Person, Organization, Location, Date nodes with typed labeled edges" style={{ width: '100%', borderRadius: '12px', margin: '0 0 24px' }} />
GraphBuilder
GraphBuilder constructs knowledge graphs from extracted entities and relationships. merge_entities defaults to False: pass True to enable entity deduplication during construction:
from semantica.kg import GraphBuilder
# Pass a dict with "entities" and "relationships" keys
builder = GraphBuilder(merge_entities=True)
kg = builder.build({"entities": entities, "relationships": relationships})
| Method | Returns | Description |
|---|---|---|
build(sources) |
dict |
Build graph from a dict, list of dicts, or list of entity/relation objects |
build_single_source(data) |
dict |
Build graph from a single data source dict |
Temporal Knowledge Graphs (v0.4.0)
Use TemporalGraphQuery to attach valid_from/valid_until windows and query point-in-time snapshots of any graph:
from semantica.kg import GraphBuilder, TemporalGraphQuery, TemporalVersionManager
from datetime import datetime
# Build a time-aware graph
builder = GraphBuilder()
kg = builder.build(sources=[
{
"entities": [
{"id": "alice", "type": "Person"},
{"id": "acme_corp", "type": "Organization"},
],
"relationships": [
{
"source": "alice", "target": "acme_corp", "type": "ceo_of",
"valid_from": "2020-01-01",
"valid_until": "2023-06-01",
}
]
}
])
# Point-in-time snapshot: TemporalGraphQuery takes no positional graph arg;
# pass the graph into each query method instead.
query = TemporalGraphQuery()
snapshot_2021 = query.reconstruct_at_time(kg, "2021-06-15")
snapshot_2023 = query.reconstruct_at_time(kg, "2023-01-01")
# Relationships active within a date range
range_result = query.query_time_range(kg, "", "2020-01-01", "2023-01-01")
print(f"Relationships in range: {range_result['num_relationships']}")
# Versioned snapshots: author and description are required
versioner = TemporalVersionManager()
versioner.create_snapshot(kg, version_label="2024-Q1",
author="user@example.com",
description="Q1 2024 snapshot")
Supports all 13 Allen interval algebra relations:
- before, after, meets, met_by
- overlaps, overlapped_by
- during, contains, starts, started_by, finishes, finished_by, equals
OWL-Time export available.
Similarity Scoring
SimilarityCalculator computes cosine, Euclidean, Manhattan, and correlation similarity between node embeddings:
from semantica.kg import SimilarityCalculator, NodeEmbedder
# First compute structural embeddings
embedder = NodeEmbedder(method="node2vec", embedding_dimension=128)
embeddings = embedder.compute_embeddings(kg, ["Person", "Organization"], ["RELATED_TO"])
# Then compare nodes by embedding similarity
calc = SimilarityCalculator()
score = calc.cosine_similarity(embeddings["Apple Inc."], embeddings["Google"])
print(f"Apple–Google structural similarity: {score:.3f}")
# Find structurally similar nodes: returns List[str] of node IDs
similar = embedder.find_similar_nodes(kg, "Apple Inc.", top_k=5)
for node_id in similar:
print(node_id)
Graph Analytics
Measure node importance across five algorithms. Use `calculate_all_centrality()` to run them all at once.```python
from semantica.kg import CentralityCalculator
calculator = CentralityCalculator()
# Run all centrality measures at once
all_metrics = calculator.calculate_all_centrality(graph)
# Or run individually
pagerank = calculator.calculate_pagerank(graph, damping_factor=0.85)
betweenness = calculator.calculate_betweenness_centrality(graph)
closeness = calculator.calculate_closeness_centrality(graph)
# Get the top 10 most important nodes
top_nodes = calculator.get_top_nodes(pagerank, top_k=10)
```
| Method | Best for |
| :------ | :-------- |
| `calculate_degree_centrality()` | Most-connected nodes |
| `calculate_pagerank()` | Link-based influence (like Google PageRank) |
| `calculate_betweenness_centrality()` | Bottleneck / bridge nodes |
| `calculate_closeness_centrality()` | Nodes closest to all others |
| `calculate_eigenvector_centrality()` | Nodes connected to other high-influence nodes |
```python
from semantica.kg import CommunityDetector
detector = CommunityDetector()
# Louvain: fast, high quality (default)
communities = detector.detect_communities(graph, algorithm="louvain")
# Leiden: higher quality, slower
communities = detector.detect_communities_leiden(graph, resolution=1.2)
# Evaluate community quality
metrics = detector.calculate_community_metrics(graph, communities)
print(f"Modularity: {metrics['modularity']:.3f}")
print(f"Communities found: {metrics['num_communities']}")
```
| Algorithm | Strength |
| :--------- | :-------- |
| Louvain | Fast, good modularity: use for large graphs |
| Leiden | Best modularity: use when quality matters more than speed |
| Label Propagation | Near-linear time: use for very large graphs |
| K-Clique | Overlapping communities: nodes can belong to multiple groups |
```python
from semantica.kg import PathFinder
finder = PathFinder()
# Dijkstra shortest path
path = finder.dijkstra_shortest_path(graph, "Alice", "Bob")
print(" → ".join(path["path"]))
# All shortest paths between two nodes
paths = finder.all_shortest_paths(graph, "source", "target")
# K-Shortest paths (alternative routes)
k_paths = finder.find_k_shortest_paths(graph, "source", "target", k=3)
```
| Algorithm | Use case |
| :--------- | :-------- |
| Dijkstra | Weighted shortest path: standard routing |
| A\* | Heuristic-guided search: faster on large sparse graphs |
| BFS | Unweighted shortest path: hop count only |
| K-Shortest | Multiple alternative routes |
```python
from semantica.kg import LinkPredictor
predictor = LinkPredictor(method="preferential_attachment")
# Predict the top 20 most likely missing edges
predicted = predictor.predict_links(graph, top_k=20)
for link in predicted:
print(f"{link['source']} → {link['target']} (score: {link['score']:.3f})")
# Score a specific pair
score = predictor.score_link(graph, "Alice", "CompanyX")
```
| Algorithm | Best for |
| :--------- | :-------- |
| Preferential Attachment | High-degree node connection prediction |
| Common Neighbors | Nodes with shared connections |
| Jaccard | Normalized common-neighbor overlap |
| Adamic-Adar | Weighted common neighbors (penalizes hubs) |
| Resource Allocation | Conservative: ignores high-degree intermediaries |
```python
from semantica.kg import NodeEmbedder, SimilarityCalculator
# Compute Node2Vec embeddings
embedder = NodeEmbedder(method="node2vec", embedding_dimension=128)
embeddings = embedder.compute_embeddings(
graph, ["Person", "Organization"], ["RELATED_TO"]
)
# Find structurally similar nodes
similar = embedder.find_similar_nodes(graph, "Apple Inc.", top_k=5)
for node_id in similar:
print(node_id)
# Compare two specific nodes by embedding similarity
calc = SimilarityCalculator()
score = calc.cosine_similarity(embeddings["Apple Inc."], embeddings["Google"])
print(f"Structural similarity: {score:.3f}")
```
<Note>
`find_similar_nodes` returns `List[str]`: a list of node IDs, not node objects. Look up full node data via `graph["nodes"]`.
</Note>
Algorithm Summary
| Category | Algorithms | Use Cases |
|---|---|---|
| Node Embeddings | Node2Vec | Structural similarity, node representation |
| Similarity | Cosine, Euclidean, Manhattan, Correlation | Node matching, recommendation |
| Path Finding | Dijkstra, A*, BFS, K-Shortest | Route planning, network analysis |
| Link Prediction | Preferential Attachment, Jaccard, Adamic-Adar | Network completion |
| Centrality | Degree, Betweenness, Closeness, PageRank | Influence analysis |
| Community Detection | Louvain, Leiden, Label Propagation | Social clustering |
| Connectivity | Components, Bridges, Density | Network robustness |
GraphValidator
Validates graph structure: checks required fields, duplicate IDs, dangling edges, and optionally detects cycles and orphan nodes:
from semantica.kg import GraphValidator
validator = GraphValidator()
result = validator.validate(kg) # accepts the dict returned by GraphBuilder.build()
if result.is_valid:
print("Graph is valid")
else:
for issue in result.issues:
print(f"{issue.severity.value}: {issue.message}")
Pass strict=True to treat warnings as errors. Pass a schema dict with "entity_types" and "relationship_types" keys to validate against a known type vocabulary.
Configuration
kg:
resolution:
threshold: 0.9
strategy: semantic
temporal:
enabled: true
default_validity: infinite
Cookbooks
- Building Knowledge Graphs: fundamentals of KG construction · Beginner
- Your First Knowledge Graph: entity extraction to visualization · Beginner
- Graph Analytics: centrality and community detection · Intermediate
- Advanced Graph Analytics: PageRank, Louvain, shortest path · Advanced
- Temporal Knowledge Graphs: temporal logic and graph evolution · Advanced