Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Technical Vocabulary Quick Reference(专业词汇速查)

Organised by module. Each entry: English term → 中文 → spelling/usage notes.


Module A — Symbolic Logic

Term中文Watch Out
Propositional Logic命题逻辑NOT “proportional”
First-Order Logic (FOL)一阶逻辑Also: predicate logic
Connective逻辑联结词∧ AND, ∨ OR, → implies, ¬ NOT
Modus Ponens肯定前件P, P→Q ⊢ Q
Modus Tollens否定后件¬Q, P→Q ⊢ ¬P
Resolution归结NOT “revolution”
CNF (Conjunctive Normal Form)合取范式AND of ORs
Quantifier量词∀ universal, ∃ existential
Vacuous truth空真P→Q is TRUE when P is FALSE
Predicate谓词Function returning T/F: Fly(x)
Inference推理NOT “reference”

Module B — LNN

Term中文Watch Out
Logic Neural Network (LNN)逻辑神经网络“Logic Neural” not “Logical Neural”
T-norm三角范数Generalises AND to [0,1]
Łukasiewicz卢卡西维茨Hard to spell; max(0, a+b-1)
Differentiable可微的Enables gradient-based learning
Truth bounds真值上下界[L, U] interval
Conjunction / Disjunction合取 / 析取AND / OR
Bidirectional inference双向推理Upward + downward pass

Module C — Knowledge Representation

Term中文Watch Out
Expert System专家系统Rule-based, mimics human experts
Knowledge Base知识库NOT just “database”
Inference Engine推理引擎Applies rules to derive conclusions
Ontology本体论Formal concepts + relationships
OWL网络本体语言Web Ontology Language
RDF资源描述框架(subject, predicate, object) triples
Knowledge Graph知识图谱Entity-relation-entity graph
RAG检索增强生成Retrieval-Augmented Generation

Module D — Knowledge Graphs

Term中文Watch Out
Entity/Relation Embedding实体/关系嵌入Dense, learned vectors
TransETransE模型h + r ≈ t
Link Prediction链接预测(h, r, ?) or (?, r, t)
Negative Sampling负采样Corrupt h or t for training
L1 norm / Manhattan distanceL1范数Σ|x_i - y_i|

Module E — MYCIN

Term中文Watch Out
Backward Chaining反向链接Goal-driven
Forward Chaining正向链接Data-driven
Confidence Factor (CF)确信因子Range [-1, +1]; NOT a probability
Production Rule产生式规则IF-THEN format
E-MYCIN基本MYCINDomain-independent shell
Knowledge Acquisition Bottleneck知识获取瓶颈Hard to extract expert knowledge

Module F — Decision Trees & Ensembles

Term中文Watch Out
Decision Tree决策树NOT “decision three”
EntropyH(X) = -Σ p(x) log₂ p(x)
Information Gain信息增益IG = H(Y) - H(Y|X)
Gini Index基尼指数1 - Σ p²(i)
Bagging袋装法Bootstrap Aggregating — parallel
Boosting提升法Sequential error correction
Random Forest随机森林Bagging + feature bagging
AdaBoost自适应提升Adaptive Boosting
XGBoost极端梯度提升eXtreme Gradient Boosting
Weak Learner弱学习器Slightly better than random
Decision Stump决策桩One-split tree
Bootstrap自助采样Sample WITH replacement

Module G — Soft Computing

Term中文Watch Out
Vagueness模糊性Blurry boundaries → fuzzy logic
Uncertainty不确定性Unknown state → Bayesian
Fuzzy Logic模糊逻辑Degrees of truth [0, 1]
Membership Function隶属函数μ_A(x) — NOT a probability
Bayesian Reasoning贝叶斯推理P(H|e) via Bayes’ theorem
Prior / Posterior先验 / 后验Before / after seeing evidence
Likelihood似然P(evidence | hypothesis)
Naive Bayes朴素贝叶斯Assumes feature independence

Top Confused Pairs(最易混淆)

PairKey Difference
vagueness vs uncertaintyBlurry concept vs unknown fact
bagging vs boostingParallel/variance vs sequential/bias
forward vs backward chainingData-driven vs goal-driven
inference vs referenceReasoning vs citing
parameter vs hyperparameterLearned vs manually set
embedding vs encodingDense learned vs any representation
ontology vs knowledge graphSchema/vocabulary vs data instances
entropy vs information gainImpurity measure vs impurity reduction
precision vs accuracyTP/(TP+FP) vs correct/total