From 977974f4d2ce9b12608d97e51ed0253b02bf4944 Mon Sep 17 00:00:00 2001 From: gaotingquan Date: Wed, 16 Mar 2022 11:25:08 +0000 Subject: [PATCH] docs: the key output -> logits --- docs/zh_CN/advanced_tutorials/theseus_layer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh_CN/advanced_tutorials/theseus_layer.md b/docs/zh_CN/advanced_tutorials/theseus_layer.md index c07d0e11..762ef9c1 100644 --- a/docs/zh_CN/advanced_tutorials/theseus_layer.md +++ b/docs/zh_CN/advanced_tutorials/theseus_layer.md @@ -184,8 +184,8 @@ print("The result returned by update_res(): ", res) output = net(pd_input) print("The output's keys of processed net: ", output.keys()) -# The output's keys of net: dict_keys(['output', 'blocks[0]', 'blocks[2]', 'blocks[4]', 'blocks[10]']) -# 网络前向输出 output 为 dict 类型对象,其中,output["output"] 为网络最终输出,output["blocks[0]"] 等为网络中间层输出结果 +# The output's keys of net: dict_keys(['logits', 'blocks[0]', 'blocks[2]', 'blocks[4]', 'blocks[10]']) +# 网络前向输出 output 为 dict 类型对象,其中,output["logits"] 为网络最终输出,output["blocks[0]"] 等为网络中间层输出结果 ``` 除了通过调用方法 `update_res()` 的方式之外,也同样可以在实例化网络对象时,通过指定参数 `return_patterns` 实现相同效果: -- GitLab