From 7ba3afaf4e47a6b225c14b16d63325c796a74275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E4=B8=9A=E5=BA=86?= Date: Wed, 28 Jul 2021 15:39:36 +0000 Subject: [PATCH 1/7] =?UTF-8?q?update=20Ascend-PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86=E6=8C=87=E5=AF=BC/PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86-=E4=BA=A4=E4=BB=98=E6=A0=87=E5=87=86?= =?UTF-8?q?=E4=B8=8E=E4=BA=A4=E4=BB=98=E4=BB=B6.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...06\344\270\216\344\272\244\344\273\230\344\273\266.md" | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\344\272\244\344\273\230\346\240\207\345\207\206\344\270\216\344\272\244\344\273\230\344\273\266.md" "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\344\272\244\344\273\230\346\240\207\345\207\206\344\270\216\344\272\244\344\273\230\344\273\266.md" index ab5a5b2..7db1eaa 100644 --- "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\344\272\244\344\273\230\346\240\207\345\207\206\344\270\216\344\272\244\344\273\230\344\273\266.md" +++ "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\344\272\244\344\273\230\346\240\207\345\207\206\344\270\216\344\272\244\344\273\230\344\273\266.md" @@ -130,18 +130,22 @@ > **提交前请确保自验通过!确保直接执行以下脚本就可运行!** ```shell - #准备环境 + #准备环境,版本CANN 5.0.2 交付的代码文件夹下获取模型结构的开源代码,安装必要的依赖,获取训练提供的权重文件,获取数据集路径,获取benchmark工具 # pth是否能正确转换为om bash test/pth2om.sh - # 精度数据是否达标(需要显示官网pth精度与om模型的精度) + # 精度数据是否达标 # npu性能数据(确保device空闲时测试,如果模型支持多batch,测试bs1与bs16,否则只测试bs1,性能数据以单卡吞吐率为标准),不指定数据集目录时默认/root/datasets bash test/eval_acc_perf.sh --datasets_path=/root/datasets # 在t4环境测试性能数据(确保gpu空闲时测试,如果模型支持多batch,测试bs1与bs16,否则只测试bs1,如果导出的onnx模型因含自定义算子等不能离线推理,则在t4上测试pytorch模型的在线推理性能,性能数据以单卡吞吐率为标准) bash perf_g.sh + + # 310性能是否超过t4: 是 / 否 + bs1:310=(1497.252/763.044)1.96倍t4 + bs16:310=(2096.376/1234.940)1.70倍t4 ``` - PR内容模板 - PR示例链接 https://gitee.com/ascend/modelzoo/pulls/2309 -- Gitee From f82b497a036ff4ecf3f47828a95ae79ee450758e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E4=B8=9A=E5=BA=86?= Date: Wed, 28 Jul 2021 15:42:24 +0000 Subject: [PATCH 2/7] =?UTF-8?q?update=20Ascend-PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86=E6=8C=87=E5=AF=BC/PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86-=E9=AA=8C=E6=94=B6=E6=8C=87=E5=8D=97.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...6-\351\252\214\346\224\266\346\214\207\345\215\227.md" | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" index e6603b1..8f91834 100644 --- "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" +++ "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" @@ -20,18 +20,22 @@ ```shell - #准备环境 + #准备环境,版本CANN 5.0.2 交付的代码文件夹下获取模型结构的开源代码,安装必要的依赖,获取训练提供的权重文件,获取数据集路径,获取benchmark工具 # pth是否能正确转换为om bash test/pth2om.sh - # 精度数据是否达标(需要显示官网pth精度与om模型的精度) + # 精度数据是否达标 # npu性能数据(确保device空闲时测试,如果模型支持多batch,测试bs1与bs16,否则只测试bs1,性能数据以单卡吞吐率为标准),不指定数据集目录时默认/root/datasets bash test/eval_acc_perf.sh --datasets_path=/root/datasets # 在t4环境测试性能数据(确保gpu空闲时测试,如果模型支持多batch,测试bs1与bs16,否则只测试bs1,如果导出的onnx模型因含自定义算子等不能离线推理,则在t4上测试pytorch模型的在线推理性能,性能数据以单卡吞吐率为标准) bash perf_g.sh + + # 310性能是否超过t4: 是 / 否 + bs1:310=(1497.252/763.044)1.96倍t4 + bs16:310=(2096.376/1234.940)1.70倍t4 ``` - 验收过程中遇到问题,如是一些路径或者打字错误的问题,先修复继续执行 -- Gitee From be0053f7fa87906cc9a28c2888170edc77bb9435 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E4=B8=9A=E5=BA=86?= Date: Wed, 28 Jul 2021 16:10:11 +0000 Subject: [PATCH 3/7] =?UTF-8?q?update=20Ascend-PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86=E6=8C=87=E5=AF=BC/PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86-=E9=AA=8C=E6=94=B6=E6=8C=87=E5=8D=97.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...14\346\224\266\346\214\207\345\215\227.md" | 25 ++++++++----------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" index 8f91834..900e97d 100644 --- "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" +++ "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" @@ -75,12 +75,13 @@ - 上gitee管理平台,将验收目标调整至完成状态 - 上团队空间-测试管理-PyTorch模型众智验收跟踪表 更新模型验收数据 - 完成验收测试报告文档,归档obs - - 整理验收必要的交付件,归档obs,将/home/verify_models/{模型名}目录压缩后归档,归档时需要删除该目录下的占用磁盘空间的无用文件夹预处理后的数据集文件夹(包含预处理后缀为bin文件的目录),result/dumpOutput_device0与result/dumpOutput_device1 + - 整理验收必要的交付件,归档obs,将/home/verify_models/{模型名}目录压缩后归档,归档时需要删除该目录下的占用磁盘空间的预处理后的数据集文件夹(包含预处理后缀为bin文件的文件夹),result/dumpOutput_device0与result/dumpOutput_device1 6. 验收归档与统计 - 1./home/verify_models/modelzoo目录用来拉取modelzoo代码pr - 1./home/verify_models目录下需要保存以上测试后通过的模型 - 3./home/verify_models/models_result.xlsx里填写模型的测试数据,bs4,8,32的性能数据从README.md中获取,如果蓝区版本精度性能不达标,而黄区测试达标在备注里写明黄区版本,如果黄区测试也不能达标则写明黄区测试精度或性能不达标 - 4./home/verify_models仅用来存放测试通过的模型,models_result.xlsx以及modelzoo的代码,不要在该目录存放其它无用的文件 + 0.测试通过的模型都要归档到45上,不要在45机器上进行其它写的操作,也不要随便安装无用软件 + 1./home/modelzoo目录用来拉取modelzoo代码pr + 2./home/verify_models目录下需要保存以上测试通过的模型 + 3./home/verify_models/models_result.xlsx里填写模型的测试数据,bs4,8,32的性能数据从测试报告中获取,如果蓝区版本精度性能不达标,而黄区测试达标在备注里写明黄区版本,如果黄区测试也不能达标则写明黄区测试精度或性能不达标 + 4./home/verify_models仅用来存放测试通过的模型,models_result.xlsx,不要在该目录创建其它无用的文件 @@ -100,26 +101,22 @@ - pr检视: 1.标题格式:[华为大学昇腾学院][高校贡献][PyTorch离线推理][Cascade_RCNN]-初次提交 -2.包含bs1与bs16权重精度与om精度,包含bs1与bs16的t4与310性能数据,性能数据用fps表示 +2.包含bs1与bs16权重精度与om精度,包含bs1与bs16的gpu与310性能数据,性能数据用fps表示 3.备注:如果蓝区版本测精度或性能不达标,最新CANN版本测可以达标,这里需要写出原因与最新CANN包版本,用最新版本测。如果是无法规避的算子缺陷导致性能不达标,这里需要添加性能不达标的原因与解决方案。如果onnx因包含自定义算子不支持推理,需要说明性能是在gpu上测的在线推理,如果模型不支持batch 16,也需要说明一下 4.自验报告:CANN包版本与精度性能等数据是否正确 - 代码规范: -参考[ResNext50](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/tree/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/ONNX%E6%A8%A1%E5%9E%8B%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/official/cv/ReID/ReID-strong-baseline) +参考[ReID-strong-baseline](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/tree/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/ONNX%E6%A8%A1%E5%9E%8B%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/official/cv/ReID/ReID-strong-baseline) 1.pipline要通过 2.python脚本文件头需要加License声明 3.pr不要包括开源模型的代码与权重文件 -注意: -4.python脚本不能包含从网上下载权重的代码,比如函数预训练为true时一般会下载权重 -5.python脚本避免依赖非必要的第三方库 -6.requirements.txt包含服务器上安装的本模型所有必要依赖的开源库的具体版本 +注意: +4.requirements.txt包含服务器上安装的本模型所有必要依赖的开源库的具体版本 - 模型README.md检视: 模板参见[README.md](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/blob/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/ONNX%E6%A8%A1%E5%9E%8B%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/official/cv/ReID/ReID-strong-baseline/README.md) -1.1.2 代码地址->需要给出使用的模型开源代码地址与其branch,commitid 2.2 环境说明->需要给出服务器上安装的本模型所有必要依赖的开源库的具体版本 -3.3.1 pth转onnx模型->优先使用训练提供的权重文件,如果训练的权重文件网上能获则需给出网址,否则需要给出从哪获取权重文件。如果训练没有提供权重则使用开源代码仓的权重文件。需要给出权重文件名 -4.3.1 pth转onnx模型->如果需要对模型的开源代码做修改,以打patch的形式修改 +3.3.1 pth转onnx模型->优先使用训练提供的权重文件,如果训练的权重文件网上能获则需给出网址,否则需要给出从哪获取权重文件。如果训练没有提供权重则使用开源代码仓的权重文件。需要给出权重文件名 pip3.7 install -r requirements.txt可能会重新安装某版本pytorch,验收时根据需要决定是否执行 - 如果使用补丁文件修改了模型代码则将补丁打入模型代码,如果需要引用模型代码仓的类或函数通过sys.path.append(r"./pytorch-nested-unet")添加搜索路径 -- Gitee From c99a6efe1905eaa0adef3f6b1af512287a0394b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E4=B8=9A=E5=BA=86?= Date: Wed, 28 Jul 2021 16:17:54 +0000 Subject: [PATCH 4/7] =?UTF-8?q?update=20Ascend-PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86=E6=8C=87=E5=AF=BC/PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86-=E9=AA=8C=E6=94=B6=E6=8C=87=E5=8D=97.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...6-\351\252\214\346\224\266\346\214\207\345\215\227.md" | 8 -------- 1 file changed, 8 deletions(-) diff --git "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" index 900e97d..b2153f4 100644 --- "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" +++ "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" @@ -107,17 +107,9 @@ - 代码规范: 参考[ReID-strong-baseline](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/tree/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/ONNX%E6%A8%A1%E5%9E%8B%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/official/cv/ReID/ReID-strong-baseline) -1.pipline要通过 -2.python脚本文件头需要加License声明 -3.pr不要包括开源模型的代码与权重文件 -注意: -4.requirements.txt包含服务器上安装的本模型所有必要依赖的开源库的具体版本 - 模型README.md检视: 模板参见[README.md](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/blob/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/ONNX%E6%A8%A1%E5%9E%8B%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/official/cv/ReID/ReID-strong-baseline/README.md) -2.2 环境说明->需要给出服务器上安装的本模型所有必要依赖的开源库的具体版本 -3.3.1 pth转onnx模型->优先使用训练提供的权重文件,如果训练的权重文件网上能获则需给出网址,否则需要给出从哪获取权重文件。如果训练没有提供权重则使用开源代码仓的权重文件。需要给出权重文件名 -pip3.7 install -r requirements.txt可能会重新安装某版本pytorch,验收时根据需要决定是否执行 - 如果使用补丁文件修改了模型代码则将补丁打入模型代码,如果需要引用模型代码仓的类或函数通过sys.path.append(r"./pytorch-nested-unet")添加搜索路径 预处理脚本不需要improt该脚本没有使用的库 -- Gitee From 2c4632e087fa30cbe269760b9bccebb3c9354aba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E4=B8=9A=E5=BA=86?= Date: Wed, 28 Jul 2021 16:22:16 +0000 Subject: [PATCH 5/7] =?UTF-8?q?update=20Ascend-PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86=E6=8C=87=E5=AF=BC/PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86-=E9=AA=8C=E6=94=B6=E6=8C=87=E5=8D=97.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\214\346\224\266\346\214\207\345\215\227.md" | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" index b2153f4..caa6cf2 100644 --- "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" +++ "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" @@ -97,7 +97,7 @@ - 示例链接 https://gitee.com/ascend/modelzoo/issues/I3W5Y3?from=project-issue - [性能不达标issue模板](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/blob/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86-issue%E6%A8%A1%E6%9D%BF.md) -### 附: pr检视 +### 附: 规范与检视 - pr检视: 1.标题格式:[华为大学昇腾学院][高校贡献][PyTorch离线推理][Cascade_RCNN]-初次提交 @@ -106,17 +106,18 @@ 4.自验报告:CANN包版本与精度性能等数据是否正确 - 代码规范: + +参见[交付标准与交付件规范](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/blob/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86-%E4%BA%A4%E4%BB%98%E6%A0%87%E5%87%86%E4%B8%8E%E4%BA%A4%E4%BB%98%E4%BB%B6.md) + 参考[ReID-strong-baseline](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/tree/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/ONNX%E6%A8%A1%E5%9E%8B%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/official/cv/ReID/ReID-strong-baseline) -- 模型README.md检视: +- 模型README.md: 模板参见[README.md](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/blob/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/ONNX%E6%A8%A1%E5%9E%8B%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/official/cv/ReID/ReID-strong-baseline/README.md) - 如果使用补丁文件修改了模型代码则将补丁打入模型代码,如果需要引用模型代码仓的类或函数通过sys.path.append(r"./pytorch-nested-unet")添加搜索路径 预处理脚本不需要improt该脚本没有使用的库 -参见https://gitee.com/ascend/modelzoo/pulls/2309 -参见https://gitee.com/ascend/modelzoo/pulls/2585 +参考https://gitee.com/ascend/modelzoo/pulls/2309 +参考https://gitee.com/ascend/modelzoo/pulls/2585 - 模型不支持动态onnx,性能不达标等特殊情况需要在pr备注与性能优化里说明 -参见https://gitee.com/ascend/modelzoo/pulls/2122 -参见https://gitee.com/ascend/modelzoo/pulls/2328 - -### 附: [交付标准与交付件规范](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/blob/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86-%E4%BA%A4%E4%BB%98%E6%A0%87%E5%87%86%E4%B8%8E%E4%BA%A4%E4%BB%98%E4%BB%B6.md) +参考https://gitee.com/ascend/modelzoo/pulls/2122 +参考https://gitee.com/ascend/modelzoo/pulls/2328 -- Gitee From 2fe48d9c73e1651365393a489e12a736e7cee43f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E4=B8=9A=E5=BA=86?= Date: Wed, 28 Jul 2021 16:24:09 +0000 Subject: [PATCH 6/7] =?UTF-8?q?update=20Ascend-PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86=E6=8C=87=E5=AF=BC/PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86-=E9=AA=8C=E6=94=B6=E6=8C=87=E5=8D=97.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" | 1 - 1 file changed, 1 deletion(-) diff --git "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" index caa6cf2..9307cd3 100644 --- "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" +++ "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" @@ -106,7 +106,6 @@ 4.自验报告:CANN包版本与精度性能等数据是否正确 - 代码规范: - 参见[交付标准与交付件规范](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/blob/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86-%E4%BA%A4%E4%BB%98%E6%A0%87%E5%87%86%E4%B8%8E%E4%BA%A4%E4%BB%98%E4%BB%B6.md) 参考[ReID-strong-baseline](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/tree/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/ONNX%E6%A8%A1%E5%9E%8B%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/official/cv/ReID/ReID-strong-baseline) -- Gitee From d62ac78cca3f5ecc40b226269ba5cd05a3e51729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E4=B8=9A=E5=BA=86?= Date: Wed, 28 Jul 2021 16:24:43 +0000 Subject: [PATCH 7/7] =?UTF-8?q?update=20Ascend-PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86=E6=8C=87=E5=AF=BC/PyTorch=E7=A6=BB=E7=BA=BF?= =?UTF-8?q?=E6=8E=A8=E7=90=86-=E9=AA=8C=E6=94=B6=E6=8C=87=E5=8D=97.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" | 1 - 1 file changed, 1 deletion(-) diff --git "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" index 9307cd3..1876df1 100644 --- "a/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" +++ "b/Ascend-PyTorch\347\246\273\347\272\277\346\216\250\347\220\206\346\214\207\345\257\274/PyTorch\347\246\273\347\272\277\346\216\250\347\220\206-\351\252\214\346\224\266\346\214\207\345\215\227.md" @@ -107,7 +107,6 @@ - 代码规范: 参见[交付标准与交付件规范](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/blob/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86-%E4%BA%A4%E4%BB%98%E6%A0%87%E5%87%86%E4%B8%8E%E4%BA%A4%E4%BB%98%E4%BB%B6.md) - 参考[ReID-strong-baseline](https://gitee.com/wangjiangben_hw/ascend-pytorch-crowdintelligence-doc/tree/master/Ascend-PyTorch%E7%A6%BB%E7%BA%BF%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/ONNX%E6%A8%A1%E5%9E%8B%E6%8E%A8%E7%90%86%E6%8C%87%E5%AF%BC/official/cv/ReID/ReID-strong-baseline) - 模型README.md: -- Gitee