Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] fix doc typos #1644

Merged
merged 1 commit into from
Jul 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/zh_CN/advanced_guides/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
在我们的设计中,我们定义一个完整的模型为顶层模块,根据功能的不同,基本几种不同类型的模型组件组成。

- 模型:顶层模块定义了具体的任务类型,例如 `ImageClassifier` 用在图像分类任务中, `MAE` 用在自监督学习中, `ImageToImageRetriever` 用在图像检索中。
- 主干网络:通常是一个特征提取网络,涵盖了模型直接绝大多数的差异,例如 `ResNet`、`MobileNet`。
- 主干网络:通常是一个特征提取网络,涵盖了模型之间绝大多数的差异,例如 `ResNet`、`MobileNet`。
- 颈部:用于连接主干网络和头部的组件,例如 `GlobalAveragePooling`。
- 头部:用于执行特定任务的组件,例如 `ClsHead`、 `ContrastiveHead`。
- 损失函数:在头部用于计算损失函数的组件,例如 `CrossEntropyLoss`、`LabelSmoothLoss`。
Expand Down