feat: 完整中文翻译 maths-cs-ai-compendium(数学·计算机科学·AI 知识大全)
翻译自英文原版 maths-cs-ai-compendium,共 20 章全部完成。 第01章 向量 | 第02章 矩阵 | 第03章 微积分 第04章 统计学 | 第05章 概率论 | 第06章 机器学习 第07章 计算语言学 | 第08章 计算机视觉 | 第09章 音频与语音 第10章 多模态学习 | 第11章 自主系统 | 第12章 图神经网络 第13章 计算与操作系统 | 第14章 数据结构与算法 第15章 生产级软件工程 | 第16章 SIMD与GPU编程 第17章 AI推理 | 第18章 ML系统设计 第19章 应用人工智能 | 第20章 前沿人工智能 翻译说明: - 所有数学公式 $...$ / $$...$$、代码块、图片引用完整保留 - mkdocs.yml 配置中文导航 + language: zh - README.md 已翻译为中文(兼 docs/index.md) - docs/ 目录包含指向各章文件的 symlink - 约 29,000 行中文内容,排除 .cache/ 构建缓存
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
<svg width="680" height="320" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="340" y="22" fill="#333" font-size="14" font-weight="bold" text-anchor="middle">Constituency (Parse) Tree: "the cat sat on the mat"</text>
|
||||
|
||||
<!-- S -->
|
||||
<circle cx="340" cy="55" r="18" fill="#e74c3c" opacity="0.15" stroke="#e74c3c" stroke-width="2"/>
|
||||
<text x="340" y="60" fill="#e74c3c" font-size="13" text-anchor="middle" font-weight="bold">S</text>
|
||||
|
||||
<!-- S → NP, VP -->
|
||||
<line x1="326" y1="70" x2="170" y2="105" stroke="#555" stroke-width="1.5"/>
|
||||
<line x1="354" y1="70" x2="460" y2="105" stroke="#555" stroke-width="1.5"/>
|
||||
|
||||
<!-- NP (left) -->
|
||||
<circle cx="170" cy="115" r="18" fill="#3498db" opacity="0.15" stroke="#3498db" stroke-width="2"/>
|
||||
<text x="170" y="120" fill="#3498db" font-size="12" text-anchor="middle" font-weight="bold">NP</text>
|
||||
|
||||
<!-- NP → Det, N -->
|
||||
<line x1="158" y1="130" x2="110" y2="165" stroke="#555" stroke-width="1.5"/>
|
||||
<line x1="182" y1="130" x2="230" y2="165" stroke="#555" stroke-width="1.5"/>
|
||||
|
||||
<!-- Det: "the" -->
|
||||
<circle cx="110" cy="175" r="16" fill="#f39c12" opacity="0.15" stroke="#f39c12" stroke-width="1.5"/>
|
||||
<text x="110" y="180" fill="#f39c12" font-size="11" text-anchor="middle">Det</text>
|
||||
<line x1="110" y1="191" x2="110" y2="220" stroke="#555" stroke-width="1"/>
|
||||
<text x="110" y="238" fill="#333" font-size="13" text-anchor="middle" font-weight="bold">the</text>
|
||||
|
||||
<!-- N: "cat" -->
|
||||
<circle cx="230" cy="175" r="16" fill="#f39c12" opacity="0.15" stroke="#f39c12" stroke-width="1.5"/>
|
||||
<text x="230" y="180" fill="#f39c12" font-size="11" text-anchor="middle">N</text>
|
||||
<line x1="230" y1="191" x2="230" y2="220" stroke="#555" stroke-width="1"/>
|
||||
<text x="230" y="238" fill="#333" font-size="13" text-anchor="middle" font-weight="bold">cat</text>
|
||||
|
||||
<!-- VP -->
|
||||
<circle cx="460" cy="115" r="18" fill="#27ae60" opacity="0.15" stroke="#27ae60" stroke-width="2"/>
|
||||
<text x="460" y="120" fill="#27ae60" font-size="12" text-anchor="middle" font-weight="bold">VP</text>
|
||||
|
||||
<!-- VP → V, PP -->
|
||||
<line x1="448" y1="130" x2="380" y2="165" stroke="#555" stroke-width="1.5"/>
|
||||
<line x1="472" y1="130" x2="540" y2="165" stroke="#555" stroke-width="1.5"/>
|
||||
|
||||
<!-- V: "sat" -->
|
||||
<circle cx="380" cy="175" r="16" fill="#f39c12" opacity="0.15" stroke="#f39c12" stroke-width="1.5"/>
|
||||
<text x="380" y="180" fill="#f39c12" font-size="11" text-anchor="middle">V</text>
|
||||
<line x1="380" y1="191" x2="380" y2="220" stroke="#555" stroke-width="1"/>
|
||||
<text x="380" y="238" fill="#333" font-size="13" text-anchor="middle" font-weight="bold">sat</text>
|
||||
|
||||
<!-- PP -->
|
||||
<circle cx="540" cy="175" r="18" fill="#9b59b6" opacity="0.15" stroke="#9b59b6" stroke-width="2"/>
|
||||
<text x="540" y="180" fill="#9b59b6" font-size="12" text-anchor="middle" font-weight="bold">PP</text>
|
||||
|
||||
<!-- PP → P, NP -->
|
||||
<line x1="528" y1="190" x2="480" y2="225" stroke="#555" stroke-width="1.5"/>
|
||||
<line x1="552" y1="190" x2="600" y2="225" stroke="#555" stroke-width="1.5"/>
|
||||
|
||||
<!-- P: "on" -->
|
||||
<circle cx="480" cy="235" r="14" fill="#f39c12" opacity="0.15" stroke="#f39c12" stroke-width="1.5"/>
|
||||
<text x="480" y="240" fill="#f39c12" font-size="10" text-anchor="middle">P</text>
|
||||
<line x1="480" y1="249" x2="480" y2="270" stroke="#555" stroke-width="1"/>
|
||||
<text x="480" y="288" fill="#333" font-size="13" text-anchor="middle" font-weight="bold">on</text>
|
||||
|
||||
<!-- NP (right) -->
|
||||
<circle cx="600" cy="235" r="16" fill="#3498db" opacity="0.15" stroke="#3498db" stroke-width="1.5"/>
|
||||
<text x="600" y="240" fill="#3498db" font-size="11" text-anchor="middle" font-weight="bold">NP</text>
|
||||
|
||||
<!-- NP → Det, N (right) -->
|
||||
<line x1="590" y1="249" x2="560" y2="270" stroke="#555" stroke-width="1"/>
|
||||
<line x1="610" y1="249" x2="640" y2="270" stroke="#555" stroke-width="1"/>
|
||||
|
||||
<text x="560" y="288" fill="#333" font-size="13" text-anchor="middle" font-weight="bold">the</text>
|
||||
<text x="640" y="288" fill="#333" font-size="13" text-anchor="middle" font-weight="bold">mat</text>
|
||||
|
||||
<!-- Legend -->
|
||||
<text x="340" y="313" fill="#666" font-size="10" text-anchor="middle">Each internal node is a phrase type; each leaf is a word. Phrases nest inside phrases.</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
Reference in New Issue
Block a user