From 13c46381516731a0a48e112d5f31d68fd8991234 Mon Sep 17 00:00:00 2001 From: SapientialM <55795402+SapientialM@users.noreply.github.com> Date: Thu, 10 Oct 2024 11:52:03 +0800 Subject: [PATCH] Update 05Sample.md mispronounced characters --- 01Introduction/05Sample.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01Introduction/05Sample.md b/01Introduction/05Sample.md index e35d759f..d99da443 100644 --- a/01Introduction/05Sample.md +++ b/01Introduction/05Sample.md @@ -106,7 +106,7 @@ def test(model, device, test_loader): for data, target in test_loader: data, target = data.to(device), target.to(device) # 推理系统如何高效进行模型推理 - # 我们将在第思章 AI 推理系统进行介绍 + # 我们将在第四章 AI 推理系统进行介绍 output = model(data) ...