计算机专业英语词汇

59 minIntermediate2026/6/14

计算机专业英语词汇 1000 词,按编程语言、Web 开发、操作系统、网络、数据库、AI 分类,助力技术文档阅读与写作。

1. 编程语言与软件工程 (Programming Languages & Software Engineering)

单词音标释义例句
abstraction/æbˈstrækʃn/n. 抽象Abstraction reduces complexity in software design.
algorithm/ˈælɡərɪðəm/n. 算法The sorting algorithm runs in O(nlogn)O(n \log n) time.
allocate/ˈæləkeɪt/v. 分配The system allocates memory dynamically.
argument/ˈɑːrɡjumənt/n. 参数;论点The function accepts three arguments.
array/əˈreɪ/n. 数组Elements in an array are accessed by index.
asynchronous/eɪˈsɪŋkrənəs/adj. 异步的Asynchronous programming avoids blocking the main thread.
attribute/əˈtrɪbjuːt/n. 属性Each HTML element has specific attributes.
binary/ˈbaɪnəri/adj. 二进制的Computers process data in binary format.
binding/ˈbaɪndɪŋ/n. 绑定Late binding occurs at runtime.
boolean/ˈbuːliən/n. 布尔值A boolean can be either true or false.
callback/ˈkɔːlbæk/n. 回调The callback function executes after the request completes.
class/klæs/n. A class defines the structure and behavior of objects.
closure/ˈkloʊʒər/n. 闭包A closure captures variables from its outer scope.
compile/kəmˈpaɪl/v. 编译The compiler translates source code to machine code.
concurrency/kənˈkɜːrənsi/n. 并发Concurrency enables multiple tasks to make progress.
constant/ˈkɑːnstənt/n. 常量The value of a constant cannot be changed.
constructor/kənˈstrʌktər/n. 构造函数The constructor initializes the object’s state.
debug/diːˈbʌɡ/v. 调试Use a debugger to step through the code.
declaration/ˌdekləˈreɪʃn/n. 声明Variable declarations must precede their use.
dependency/dɪˈpendənsi/n. 依赖The project has several external dependencies.
deprecation/ˌdeprəˈkeɪʃn/n. 弃用The deprecated API will be removed in the next release.
deserialize/diːˈsɪriəlaɪz/v. 反序列化Deserialize the JSON string into an object.
encapsulation/ɪnˌkæpsjuˈleɪʃn/n. 封装Encapsulation hides internal implementation details.
enumerate/ɪˈnuːməreɪt/v. 枚举Enumerate all possible combinations.
exception/ɪkˈsepʃn/n. 异常An exception was thrown during execution.
expression/ɪkˈspreʃn/n. 表达式The expression evaluates to a boolean value.
function/ˈfʌŋkʃn/n. 函数The function returns the computed result.
garbage/ˈɡɑːrbɪdʒ/n. 垃圾Garbage collection reclaims unused memory.
generic/dʒəˈnerɪk/adj. 泛型Generic types improve code reusability.
handler/ˈhændlər/n. 处理器The event handler responds to user actions.
heap/hiːp/n. 堆Objects are allocated on the heap.
identifier/aɪˈdentɪfaɪər/n. 标识符Variable names are identifiers.
immutable/ɪˈmjuːtəbl/adj. 不可变的Strings in Python are immutable.
implement/ˈɪmplɪment/v. 实现The class implements the interface.
inheritance/ɪnˈherɪtəns/n. 继承Inheritance allows code reuse through class hierarchies.
instance/ˈɪnstəns/n. 实例Each object is an instance of a class.
interface/ˈɪntərfeɪs/n. 接口The interface defines a contract for implementing classes.
interpret/ɪnˈtɜːrprɪt/v. 解释执行Python is an interpreted language.
iteration/ˌɪtəˈreɪʃn/n. 迭代Each iteration processes one element.
lambda/ˈlæmdə/n. Lambda 表达式Lambda expressions create anonymous functions.
lexical/ˈleksɪkl/adj. 词法的Lexical scoping determines variable accessibility.
literal/ˈlɪtərəl/n. 字面量String literals are enclosed in quotes.
metadata/ˈmetədeɪtə/n. 元数据Metadata provides information about the data.
method/ˈmeθəd/n. 方法The method performs the requested operation.
module/ˈmɑːdʒuːl/n. 模块Import the module to use its functions.
mutable/ˈmjuːtəbl/adj. 可变的Lists in Python are mutable.
namespace/ˈneɪmspeɪs/n. 命名空间Namespaces prevent naming conflicts.
null/nʌl/n. 空值The variable was assigned a null value.
object/ˈɑːbdʒekt/n. 对象Everything in Python is an object.
operand/ˈɑːpərænd/n. 操作数The operator requires two operands.
operator/ˈɑːpəreɪtər/n. 运算符The comparison operator returns a boolean.
overload/ˌoʊvərˈloʊd/v. 重载Method overloading allows multiple signatures.
override/ˌoʊvərˈraɪd/v. 重写The subclass overrides the parent method.
parameter/pəˈræmɪtər/n. 参数The function takes two parameters.
parse/pɑːrz/v. 解析The parser converts the string into a data structure.
pointer/ˈpɔɪntər/n. 指针A pointer stores the memory address of a variable.
polymorphism/ˌpɑːlɪˈmɔːrfɪzəm/n. 多态Polymorphism allows objects to be treated as their parent type.
primitive/ˈprɪmətɪv/adj. 原始的Primitive types include int, float, and boolean.
recursion/rɪˈkɜːrʒn/n. 递归Recursion requires a base case to terminate.
refactor/riːˈfæktər/v. 重构Refactor the code to improve readability.
reference/ˈrefərəns/n. 引用Pass by reference shares the same object.
reflection/rɪˈflekʃn/n. 反射Reflection allows runtime type inspection.
return/rɪˈtɜːrn/v. 返回The function returns the computed value.
runtime/ˈrʌntaɪm/n. 运行时Runtime errors occur during program execution.
scope/skoʊp/n. 作用域Variables declared inside a block have local scope.
serialize/ˈsɪriəlaɪz/v. 序列化Serialize the object to JSON format.
signature/ˈsɪɡnətʃər/n. 签名The method signature defines its parameters and return type.
stack/stæk/n. 栈Function calls are managed on the call stack.
statement/ˈsteɪtmənt/n. 语句Each statement performs a specific action.
static/ˈstætɪk/adj. 静态的Static methods belong to the class, not instances.
string/strɪŋ/n. 字符串Strings are sequences of characters.
syntax/ˈsɪntæks/n. 语法Syntax errors prevent compilation.
template/ˈtemplət/n. 模板Template metaprogramming enables compile-time computation.
token/ˈtoʊkən/n. 令牌;词法单元The lexer breaks source code into tokens.
type/taɪp/n. Type checking ensures type safety.
variable/ˈveriəbl/n. 变量Variables store data during program execution.

2. Web 开发 (Web Development)

单词音标释义例句
accessibility/əkˌsesəˈbɪləti/n. 无障碍性Accessibility ensures websites are usable by everyone.
asset/ˈæset/n. 静态资源Bundle assets for production deployment.
async/eɪˈsɪŋk/adj. 异步的Use async/await for cleaner asynchronous code.
attribute/əˈtrɪbjuːt/n. 属性Set the href attribute of the anchor tag.
authentication/ɔːˌθentɪˈkeɪʃn/n. 认证Authentication verifies user identity.
authorization/ˌɔːθərəˈzeɪʃn/n. 授权Authorization determines user permissions.
bundle/ˈbʌndl/n./v. 打包Webpack bundles JavaScript modules.
cache/kæʃ/n./v. 缓存Cache static assets for better performance.
certificate/sərˈtɪfɪkət/n. 证书SSL certificates enable HTTPS.
component/kəmˈpoʊnənt/n. 组件React components are reusable UI elements.
cookie/ˈkʊki/n. CookieCookies store small amounts of client-side data.
CORS/kɔːrz/n. 跨域资源共享CORS headers control cross-origin requests.
credential/krəˈdenʃl/n. 凭证Store credentials securely.
CRUD/krʌd/n. 增删改查The API supports CRUD operations.
deployment/dɪˈplɔɪmənt/n. 部署Automated deployment reduces errors.
directive/dɪˈrektɪv/n. 指令Vue directives extend HTML with custom behavior.
DOM/dɑːm/n. 文档对象模型The DOM represents the page structure.
endpoint/ˈendpɔɪnt/n. 端点The API endpoint returns user data.
favicon/ˈfævɪkɑːn/n. 网站The favicon appears in the browser tab.
framework/ˈfreɪmwɜːrk/n. 框架React is a popular frontend framework.
header/ˈhedər/n. 请求头Set the Content-Type header to application/json.
hydration/haɪˈdreɪʃn/n. 水合Hydration attaches event listeners to server-rendered HTML.
interceptor/ˌɪntərˈseptər/n. 拦截器HTTP interceptors modify requests and responses.
latency/ˈleɪtənsi/n. 延迟Reduce network latency for better UX.
library/ˈlaɪbreri/n. 库jQuery is a widely-used JavaScript library.
middleware/ˈmɪdlwer/n. 中间件Express middleware processes requests sequentially.
minify/ˈmɪnɪfaɪ/v. 压缩Minify CSS and JavaScript for production.
mock/mɑːk/v./n. 模拟Mock API responses during testing.
pagination/ˌpædʒɪˈneɪʃn/n. 分页Pagination improves performance for large datasets.
payload/ˈpeɪloʊd/n. 载荷The request payload contains the form data.
polyfill/ˈpɑːlifɪl/n. 垫片Polyfills provide modern features in older browsers.
progressive/prəˈɡresɪv/adj. 渐进的Progressive web apps work offline.
proxy/ˈprɑːksi/n. 代理A reverse proxy handles incoming requests.
query/ˈkwɪri/n. 查询URL query parameters pass data to the server.
render/ˈrendər/v. 渲染React renders components to the DOM.
request/rɪˈkwest/n./v. 请求Send a GET request to the API.
response/rɪˈspɑːns/n. 响应The server returns a JSON response.
responsive/rɪˈspɑːnsɪv/adj. 响应式的Responsive design adapts to screen sizes.
REST/rest/n. 表述性状态转移RESTful APIs follow resource-based conventions.
route/ruːt/n. 路由Define routes for each page of the application.
scaffold/ˈskæfəld/v. 脚手架Scaffold a new project with create-react-app.
schema/ˈskiːmə/n. 模式Validate data against the JSON schema.
selector/sɪˈlektər/n. 选择器CSS selectors target HTML elements.
server/ˈsɜːrvər/n. 服务器The server handles client requests.
session/ˈseʃn/n. 会话Session data is stored on the server.
SPA/es piː eɪ/n. 单页应用SPAs load a single HTML page dynamically.
SSR/es es ɑːr/n. 服务端渲染SSR improves initial page load performance.
state/steɪt/n. 状态Component state determines its rendering.
stylesheet/ˈsteɪtʃuːt/n. 样式表Link the stylesheet in the HTML head.
template/ˈtemplət/n. 模板Template literals allow embedded expressions.
throughput/ˈθruːpʊt/n. 吞吐量The server handles high throughput efficiently.
token/ˈtoʊkən/n. 令牌JWT tokens are used for authentication.
transpile/trænˈspaɪl/v. 转译Babel transpiles ES6+ to ES5.
viewport/ˈvjuːpɔːrt/n. 视口Set the viewport meta tag for mobile devices.
webhook/ˈwebhʊk/n. WebhookWebhooks notify your app of events.
webpack/ˈwebpæk/n. WebpackWebpack is a module bundler.
WebSocket/ˈwebsɑːket/n. WebSocketWebSocket enables real-time bidirectional communication.

3. 操作系统 (Operating Systems)

单词音标释义例句
batch/bætʃ/n. 批处理Batch processing executes jobs without user interaction.
boot/buːt/v. 启动The system boots from the solid-state drive.
buffer/ˈbʌfər/n. 缓冲区Data is stored in a buffer before processing.
checkpoint/ˈtʃekpɔɪnt/n. 检查点The system saves checkpoints for recovery.
CLI/siː el aɪ/n. 命令行界面The CLI provides text-based system control.
concurrency/kənˈkɜːrənsi/n. 并发Concurrency improves resource utilization.
context/ˈkɑːntekst/n. 上下文Context switching saves and restores process state.
daemon/ˈdiːmən/n. 守护进程The daemon runs in the background.
deadlock/ˈdedlɑːk/n. 死锁Deadlock occurs when processes wait indefinitely.
dispatch/dɪˈspætʃ/v. 调度The dispatcher allocates CPU time to processes.
driver/ˈdraɪvər/n. 驱动程序Install the driver for the graphics card.
exec/ɪɡˈzek/v. 执行The exec system call replaces the process image.
file/faɪl/n. 文件Files store data on disk.
fork/fɔːrk/v. 派生The fork system call creates a child process.
GUI/ɡuːi/n. 形用户界面The GUI provides visual interaction.
interrupt/ˌɪntəˈrʌpt/n./v. 中断Hardware interrupts signal events to the CPU.
I/O/aɪ oʊ/n. 输入/输出I/O operations transfer data between devices.
kernel/ˈkɜːrnl/n. 内核The kernel manages system resources.
mount/maʊnt/v. 挂载Mount the filesystem to access its contents.
mutex/ˈmjuːteks/n. 互斥锁A mutex ensures mutual exclusion.
page/peɪdʒ/n. 页The page table maps virtual to physical addresses.
pipe/paɪp/n. 管道Pipes connect the output of one process to another.
privilege/ˈprɪvəlɪdʒ/n. 特权Kernel mode has higher privileges than user mode.
process/ˈprɑːses/n. 进程Each process has its own address space.
race/reɪs/n. 竞争Race conditions cause unpredictable behavior.
scheduling/ˈskedʒuːlɪŋ/n. 调度Scheduling algorithms allocate CPU time.
semaphore/ˈseməfɔːr/n. 信号量Semaphores control access to shared resources.
shell/ʃel/n. ShellThe shell interprets user commands.
signal/ˈsɪɡnəl/n. 信号Send a signal to terminate the process.
socket/ˈsɑːkɪt/n. 套接字Sockets enable network communication.
spawn/spɔːn/v. 生成Spawn a new process to handle the request.
swap/swɑːp/v. 交换The system swaps pages to disk when memory is low.
syscall/ˈsɪskɔːl/n. 系统调用System calls provide kernel services to processes.
thread/θred/n. 线程Threads share the process address space.
zombie/ˈzɑːmbi/n. 僵尸进程Zombie processes consume process table entries.

4. 计算机网络 (Computer Networking)

单词音标释义例句
bandwidth/ˈbændwɪdθ/n. 带宽Higher bandwidth allows faster data transfer.
broadcast/ˈbrɔːdkæst/n./v. 广播Broadcast messages reach all devices on the network.
certificate/sərˈtɪfɪkət/n. 证书TLS certificates verify server identity.
cipher/ˈsaɪfər/n. 密码;加密算法AES is a symmetric cipher.
congestion/kənˈdʒestʃən/n. 拥塞Congestion control prevents network overload.
connection/kəˈnekʃn/n. 连接TCP establishes a reliable connection.
datagram/ˈdeɪtəɡræm/n. 数据报UDP sends datagrams without guaranteed delivery.
DNS/diː en es/n. 域名系统DNS resolves domain names to IP addresses.
encryption/ɪnˈkrɪpʃn/n. 加密End-to-end encryption protects message privacy.
firewall/ˈfaɪərwɔːl/n. 防火墙The firewall blocks unauthorized access.
frame/freɪm/n. 帧Ethernet frames carry data at the link layer.
gateway/ˈɡeɪtweɪ/n. 网关The default gateway routes traffic to other networks.
handshake/ˈhændʃeɪk/n. 握手TCP uses a three-way handshake.
host/hoʊst/n. 主机Each host has a unique IP address.
HTTP/eɪtʃ tiː tiː piː/n. 超文本传输协议HTTP/2 supports multiplexed connections.
hub/hʌb/n. 集线器Hubs broadcast frames to all ports.
IP/aɪ piː/n. 互联网协议IPv6 provides 128-bit addresses.
latency/ˈleɪtənsi/n. 延迟Network latency affects real-time applications.
load/loʊd/n. 负载Load balancers distribute traffic across servers.
multicast/ˈmʌltikæst/n. 组播Multicast sends data to a group of recipients.
packet/ˈpækɪt/n. 数据包Packets are routed through the network.
payload/ˈpeɪloʊd/n. 载荷The payload contains the actual data.
port/pɔːrt/n. 端口HTTP typically uses port 80.
protocol/ˈproʊtəkɑːl/n. 协议TCP/IP is the foundation of internet communication.
proxy/ˈprɑːksi/n. 代理A forward proxy acts on behalf of the client.
route/ruːt/n./v. 路由Routers forward packets between networks.
socket/ˈsɑːkɪt/n. 套接字Sockets provide endpoints for communication.
subnet/ˈsʌbnet/n. 子网Subnetting divides a network into smaller segments.
switch/swɪtʃ/n. 交换机Switches forward frames to the correct port.
TCP/tiː siː piː/n. 传输控制协议TCP ensures reliable data delivery.
TLS/tiː el es/n. 传输层安全TLS encrypts data in transit.
tunnel/ˈtʌnl/n. 隧道VPN tunnels encrypt traffic over the internet.
UDP/juː diː piː/n. 用户数据报协议UDP is suitable for real-time streaming.
VPN/viː piː en/n. 虚拟专用网络VPNs provide secure remote access.

5. 数据库 (Database)

单词音标释义例句
aggregate/ˈæɡrɪɡət/v. 聚合Aggregate functions compute values across rows.
atomic/əˈtɑːmɪk/adj. 原子的Atomic operations are indivisible.
B-tree/ˈbiː triː/n. B 树B-tree indexes speed up range queries.
cluster/ˈklʌstər/n. 集群Database clusters provide high availability.
column/ˈkɑːləm/n. 列Each column has a specific data type.
commit/kəˈmɪt/v. 提交Commit the transaction to persist changes.
constraint/kənˈstreɪnt/n. 约束Foreign key constraints enforce referential integrity.
cursor/ˈkɜːrsər/n. 游标Cursors iterate over query results row by row.
deadlock/ˈdedlɑːk/n. 死锁Deadlocks occur when transactions block each other.
document/ˈdɑːkjumənt/n. 文档MongoDB stores data as BSON documents.
dump/dʌmp/n./v. 转储Back up the database with a full dump.
field/fiːld/n. 字段Each field stores a specific attribute.
foreign/ˈfɔːrən/adj. 外部的Foreign keys reference primary keys in other tables.
graph/ɡræf/n. Graph databases model relationships between entities.
hash/hæʃ/n. 哈希Hash indexes support equality comparisons.
index/ˈɪndeks/n. 索引Indexes speed up query performance.
join/dʒɔɪn/v./n. 连接JOIN combines rows from multiple tables.
key/kiː/n. 键Primary keys uniquely identify each row.
migration/maɪˈɡreɪʃn/n. 迁移Database migrations manage schema changes.
MVCC/em viː siː siː/n. 多版本并发控制MVCC allows concurrent reads and writes.
normalize/ˈnɔːrməlaɪz/v. 规范化Normalize the schema to reduce redundancy.
NoSQL/noʊ es kjuː el/n. NoSQLNoSQL databases handle unstructured data.
partition/pɑːrˈtɪʃn/v./n. 分区Table partitioning improves query performance.
primary/ˈpraɪmeri/adj. 主键的The primary key ensures row uniqueness.
query/ˈkwɪri/n./v. 查询Optimize queries for better performance.
replica/ˈreplɪkə/n. 副本Read replicas distribute query load.
rollback/ˈroʊlbæk/n./v. 回滚Rollback undoes uncommitted changes.
row/raʊ/n. 行Each row represents a single record.
schema/ˈskiːmə/n. 模式The schema defines the database structure.
shard/ʃɑːrd/n./v. 分片Sharding distributes data across multiple servers.
SQL/es kjuː el/n. 结构化查询语言SQL is the standard language for relational databases.
table/ˈteɪbl/n. 表Tables store data in rows and columns.
transaction/trænˈzækʃn/n. 事务Transactions ensure ACID properties.
trigger/ˈtrɪɡər/n. 触发器Triggers execute automatically on data changes.
view/vjuː/n. 视Views provide virtual tables based on queries.

6. 人工智能与机器学习 (AI & Machine Learning)

单词音标释义例句
activation/ˌæktɪˈveɪʃn/n. 激活The ReLU activation function is widely used.
agent/ˈeɪdʒənt/n. 智能体An agent interacts with its environment.
attention/əˈtenʃn/n. 注意力The attention mechanism weights input importance.
autoencoder/ˌɔːtoʊɪnˈkoʊdər/n. 自编码器Autoencoders learn compressed representations.
backpropagation/ˌbækprɑːpəˈɡeɪʃn/n. 反向传播Backpropagation computes gradients for training.
batch/bætʃ/n. 批次Mini-batch training uses small subsets of data.
bias/ˈbaɪəs/n. 偏置;偏差The model has high bias due to underfitting.
classifier/ˈklæsɪfaɪər/n. 分The classifier achieves 95% accuracy.
convolution/ˌkɑːnvəˈluːʃn/n. 卷积Convolutional layers extract spatial features.
dataset/ˈdeɪtəset/n. 数据集Split the dataset into training and test sets.
decoder/diːˈkoʊdər/n. 解码器The decoder generates output sequences.
deep/diːp/adj. 深度的Deep learning uses many hidden layers.
dropout/ˈdrɑːpaʊt/n. 丢弃Dropout prevents overfitting.
embedding/ɪmˈbedɪŋ/n. 嵌入Word embeddings capture semantic meaning.
encoder/ɪnˈkoʊdər/n. 编码器The encoder compresses input into a latent space.
epoch/ˈepək/n. 轮次Train the model for 100 epochs.
feature/ˈfiːtʃər/n. 特征Feature engineering improves model performance.
fine-tune/faɪn tuːn/v. 微调Fine-tune the pretrained model on domain data.
generative/ˈdʒenərətɪv/adj. 生成式的Generative AI creates new content.
gradient/ˈɡreɪdiənt/n. 梯度Gradient descent minimizes the loss function.
hidden/ˈhɪdn/adj. 隐藏的Hidden layers perform nonlinear transformations.
hyperparameter/ˌhaɪpərpəˈræmɪtər/n. 超参数Tune hyperparameters for optimal performance.
inference/ˈɪnfərəns/n. 推理Model inference generates predictions.
label/ˈleɪbl/n. 标签Labeled data is required for supervised learning.
layer/ˈleɪər/n. 层Neural networks consist of multiple layers.
learning/ˈlɜːrnɪŋ/n. 学习Transfer learning leverages pretrained knowledge.
loss/lɔːs/n. 损失Cross-entropy loss is used for classification.
LSTM/el es tiː em/n. 长短期记忆网络LSTMs handle long-range dependencies.
metric/ˈmetrɪk/n. 指标Accuracy is a common evaluation metric.
model/ˈmɑːdl/n. 模型The model learns patterns from training data.
neural/ˈnʊrəl/adj. 神经的Neural networks are inspired by the brain.
node/noʊd/n. 节点Each node computes a weighted sum.
normalize/ˈnɔːrməlaɪz/v. 归一化Normalize inputs to improve training stability.
optimizer/ˈɑːptɪmaɪzər/n. 优化器Adam is a popular optimizer.
overfitting/ˌoʊvərˈfɪtɪŋ/n. 过拟合Overfitting occurs when the model memorizes training data.
parameter/pəˈræmɪtər/n. 参数Large language models have billions of parameters.
pooling/ˈpuːlɪŋ/n. 池化Max pooling reduces spatial dimensions.
prediction/prɪˈdɪkʃn/n. 预测The model’s prediction matches the actual value.
pretrained/priːˈtreɪnd/adj. 预训练的Use a pretrained model as a starting point.
recurrent/rɪˈkɜːrənt/adj. 循环的Recurrent networks process sequential data.
regularization/ˌreɡjələrəˈzeɪʃn/n. 正则化L2 regularization penalizes large weights.
reinforcement/ˌriːɪnˈfɔːrsmənt/n. 强化Reinforcement learning optimizes through rewards.
representation/ˌreprɪzenˈteɪʃn/n. 表示Learn a useful representation of the data.
softmax/sɑːftmæks/n. SoftmaxSoftmax converts logits to probabilities.
tensor/ˈtensər/n. 张量Tensors are multi-dimensional arrays.
token/ˈtoʊkən/n. 词元The tokenizer splits text into tokens.
transformer/trænsˈfɔːrmər/n. TransformerTransformers revolutionized NLP.
underfitting/ˌʌndərˈfɪtɪŋ/n. 欠拟合Underfitting indicates the model is too simple.
validation/ˌvælɪˈdeɪʃn/n. 验证Use a validation set to tune hyperparameters.
variance/ˈveriəns/n. 方差High variance indicates overfitting.
vector/ˈvektər/n. 向量Word vectors represent semantic relationships.
weight/weɪt/n. 权重Update weights during backpropagation.