File size: 1,510 Bytes
51522ee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
    "entity_extraction": {
        "models": {
            "spacy": {
                "model_name": "en_core_web_trf",
                "confidence_threshold": 0.7
            },
            "huggingface": {
                "model_name": "allenai/scibert_scivocab_uncased",
                "confidence_threshold": 0.6
            }
        },
        "multi_modal": {
            "enabled": true,
            "strategies": [
                "textual",
                "contextual",
                "semantic"
            ]
        }
    },
    "relationship_mapping": {
        "confidence_scoring": {
            "base_weight": 0.5,
            "semantic_proximity_weight": 0.3,
            "type_compatibility_weight": 0.2
        },
        "max_relationship_distance": 3,
        "pruning_threshold": 0.4
    },
    "graph_construction": {
        "versioning": {
            "max_versions": 10,
            "auto_prune": true
        },
        "visualization": {
            "enabled": true,
            "output_format": [
                "networkx",
                "graphviz",
                "json"
            ]
        }
    },
    "logging": {
        "level": "INFO",
        "console_output": true,
        "file_output": true,
        "log_dir": "logs/knowledge_graph"
    },
    "performance": {
        "max_concurrent_tasks": 4,
        "memory_limit_mb": 2048,
        "cache_enabled": true,
        "cache_expiry_minutes": 60
    }
}