Files
my-vault/airport-wiki/entities/index.md
T
zhiqiang feng 634d8b3406 feat: 整合 LLM Wiki v2 知识管理框架
- 新增 knowledge-management/ (3页): memory-lifecycle, knowledge-graph, wiki-operations
- 新增 entities/index.md: 实体索引 + Typed Relationships
- SCHEMA.md: 新增 confidence/superset/decay 字段 + 知识管理标签体系
- index.md: Total pages 35→39
- log.md: 完整变更记录
2026-04-13 11:32:34 +08:00

131 lines
3.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: 机场实体索引
created: 2026-04-10
updated: 2026-04-13
type: meta
tags: [entity, index]
---
# 机场实体索引
本文档作为 entities/ 目录的实体索引,记录所有实体页面及其关键关系。实体关系通过 Typed Relationships 定义,支持知识图谱遍历。
---
## 机场案例
| 机场 | 智算规模 | 关键系统 | 置信度 |
|------|----------|----------|--------|
| [[shenzhen-airport]] | DeepSeek R1-671B 满血部署 | AODB, A-CDM | 0.95 |
| [[zhengzhou-airport-hangang]] | 10,000P 当前 / 100,000P 规划 | GPU集群 | 0.9 |
| [[fuzhou-changle-airport-bsj]] | 15,000P11亿元,2026.10投产 | 智算中心 | 0.85 |
| [[jfk-airport]] | T6 + New T1 SITA-CCM | AODB/IOC | 0.8 |
| [[rome-fiumicino-airport]] | ADR 生成式AI虚拟助手 | AI助手 | 0.75 |
| [[pittsburgh-airport]] | 全球首个 Universal Design 认证 | 无障碍系统 | 0.8 |
| [[singapore-changi-airport]] | T5 100% 无接触,SITA体验中心 | 智能机场 | 0.9 |
---
## 供应商实体
> 供应商实体归类于 `entities/vendors/`(待建立)
| 供应商 | 类型 | 相关系统 | 置信度 |
|--------|------|----------|--------|
| NVIDIA | GPU芯片 | GB200 NVL72, H100 | 0.98 |
| ADB SAFEGATE | 机场系统 | AODB, 可视引导 | 0.9 |
| Amadeus | 机场系统 | AODB, FIDS | 0.9 |
| 华为 | 全栈 | 智算中心, AOCC | 0.95 |
| Vertiv | 基础设施 | 液冷, UPS, PDU | 0.9 |
---
## 关系图谱(Typed Relationships
### 机场 → 系统关系
```yaml
shenzhen-airport:
relationships:
- target: gpu-cluster
type: deploys
detail: DeepSeek R1-671B 满血部署
confidence: 0.9
- target: aodb-core
type: operates
confidence: 0.85
zhengzhou-airport-hangang:
relationships:
- target: gpu-cluster
type: deploys
detail: 10,000P 当前,100,000P 规划
confidence: 0.9
- target: power-and-cooling
type: depends_on
detail: 万卡集群需要大量液冷支持
confidence: 0.9
fuzhou-changle-airport-bsj:
relationships:
- target: gpu-cluster
type: deploys
detail: 15,000P2026.10投产
confidence: 0.85
```
### 供应商 → 技术关系
```yaml
nvidia:
relationships:
- target: gb200-nvl72
type: produces
confidence: 0.98
- target: h100
type: produces
confidence: 0.98
superseded_by: gb200-nvl72
adb-safegate:
relationships:
- target: aodb-core
type: provides
confidence: 0.9
- target: aodb-vendors
type: competes_with
detail: 与 Amadeus AODB 竞争
confidence: 0.85
```
---
## 新增实体的标准
当一个实体在以下情况时创建独立页面:
1. 在 2+ 个独立来源中被提及为核心对象
2. 属于本 wiki 领域(机场运营 / 智算中心)
3. 有可量化的事实数据(规模/投资/时间节点)
**不创建独立页面的实体**(直接以内联形式存在):
- 单次提及的供应商
- 次要标准/协议
- 临时项目代号
---
## 待建立目录
- `entities/vendors/` — 供应商实体(NVIDIA、Huawei、Vertiv、ADB SAFEGegate、Amadeus 等)
- `entities/hardware/` — 硬件型号实体(GB200 NVL72、H100 SXM5 等)
- `entities/systems/` — 系统平台实体(AODB、A-CDM 等)
---
## 相关页面
- [[knowledge-graph]] — 实体提取和类型化关系的设计
- [[memory-lifecycle]] — 置信度评分与替代机制
- [[SCHEMA]] — 实体页面的 frontmatter 规范