Skip to content

Commit

Permalink
Fixed wrong full width colon
Browse files Browse the repository at this point in the history
  • Loading branch information
yaoqih committed Nov 19, 2024
1 parent 9623b46 commit ffbbcc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chapters/zh-CN/chapter3/6.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@
explain: "collate 函数用于处理单个 batch 处理,而不是整个数据集。此外,我们讨论的是所有 collate 函数通常的用途,而不是特定的 <code>DataCollatorWithPadding</code> "
},
{
text"它把所有的样本地放在一个 batch 里。",
explain"正确!你可将 collate 函数作为 <code>DataLoader</code>函数的一个参数。 我们使用了 <code>DataCollatorWithPadding</code> 函数, 该函数对批次中的所有项目进行填充,使它们具有相同的长度。",
correct:true
text: "它把所有的样本地放在一个 batch 里。",
explain: "正确!你可将 collate 函数作为 <code>DataLoader</code>函数的一个参数。 我们使用了 <code>DataCollatorWithPadding</code> 函数, 该函数对批次中的所有项目进行填充,使它们具有相同的长度。",
correct: true
},
{
text: "它预处理整个数据集。",
Expand Down

0 comments on commit ffbbcc8

Please sign in to comment.