From 42d3d67bd5bffe62bf1cad0364037de5dd363897 Mon Sep 17 00:00:00 2001 From: baiyfbupt Date: Thu, 5 Dec 2019 18:54:14 +0800 Subject: [PATCH] fix punctuation details --- doc/demo_guide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/demo_guide.md b/doc/demo_guide.md index ca7514c5..e468db90 100644 --- a/doc/demo_guide.md +++ b/doc/demo_guide.md @@ -1,9 +1,9 @@ ## [蒸馏](../demo/distillation/distillation_demo.py) -蒸馏demo默认使用ResNet50作为teacher网络,MobileNet作为student网络,此外还支持将teacher和student换成[models目录](../demo/models)支持的任意模型 +蒸馏demo默认使用ResNet50作为teacher网络,MobileNet作为student网络,此外还支持将teacher和student换成[models目录](../demo/models)支持的任意模型。 -demo中对teahcer模型和student模型的一层特征图添加了l2_loss的蒸馏损失函数,使用时也可根据需要选择fsp_loss, soft_label_loss以及自定义的loss函数 +demo中对teahcer模型和student模型的一层特征图添加了l2_loss的蒸馏损失函数,使用时也可根据需要选择fsp_loss, soft_label_loss以及自定义的loss函数。 -训练默认使用的是cifar10数据集,piecewise_decay学习率衰减策略,momentum优化器进行120轮蒸馏训练。使用者也可以简单地用args参数切换为使用ImageNet数据集,cosine_decay学习率衰减策略等其他训练配置 +训练默认使用的是cifar10数据集,piecewise_decay学习率衰减策略,momentum优化器进行120轮蒸馏训练。使用者也可以简单地用args参数切换为使用ImageNet数据集,cosine_decay学习率衰减策略等其他训练配置。 -- GitLab