增加说明文档

This commit is contained in:
Administrator 2020-03-23 10:04:48 +08:00
parent 79c1efcbb8
commit 8d0d3f9573
2 changed files with 23 additions and 4 deletions

View File

@ -238,6 +238,23 @@ templeConfig.setDeep(int deep);
>增加一层深度训练图片的数量至少乘以3否则准确度不仅不会增加反而会下降
>>优点更深的深度准确率可以无限接近100%,我们只要训练量足够大,我们就可以更深,越深越无敌
>>>缺点:增加深度意味着成几何倍数提升的训练量,同时也意味着过拟合的风险
* 修改可调参数
``` java
//选择分类器
templeConfig.setClassifier(Classifier.DNN);
//选择期望矩阵宽度
templeConfig.setMatrixWidth(5);
//选择正则化模式
templeConfig.setRzType(RZ.L2);
//选择DNN 深度
templeConfig.setDeep(1);
//设置学习率
templeConfig.setStudyPoint(0.05);
//设置DNN隐层宽度
templeConfig.setHiddenNerveNub(6);
//设置正则系数
templeConfig.setlParam(0.015);//0.015
```
### 什么样的图片会严重影响准确率
* 训练图片或者识别图片有,比较大片的遮盖,暗光,阴影,或者使图片模糊的情况,识别和训练都会有严重的干扰
* 训练图片要求会比较高,要求若物体无背景则扣干净,有背景的话使用统一背景不要变动,不要一个训练一个物体有很多种背景

View File

@ -23,14 +23,16 @@ public class FoodTest {
public static void food() throws Exception {
Picture picture = new Picture();
TempleConfig templeConfig = new TempleConfig();
templeConfig.setClassifier(Classifier.DNN);
//templeConfig.setMatrixWidth(10);
templeConfig.setMatrixWidth(5);
templeConfig.isShowLog(true);
templeConfig.setRzType(RZ.L2);
//templeConfig.setDeep(1);
//templeConfig.setStudyPoint(0.05);
// templeConfig.setHiddenNerveNub(6);
templeConfig.setDeep(1);
templeConfig.setStudyPoint(0.05);
templeConfig.setHiddenNerveNub(6);
templeConfig.setlParam(0.015);//0.015
templeConfig.init(StudyPattern.Accuracy_Pattern, true, 640, 640, 4);
ModelParameter modelParameter2 = JSON.parseObject(ModelData.DATA3, ModelParameter.class);
templeConfig.insertModel(modelParameter2);