diff --git a/MMM-Face-Reco-DNN.js b/MMM-Face-Reco-DNN.js
index b03aacd..b154e53 100644
--- a/MMM-Face-Reco-DNN.js
+++ b/MMM-Face-Reco-DNN.js
@@ -37,7 +37,9 @@ Module.register("MMM-Face-Reco-DNN", {
welcomeMessage: true,
// Save some pictures from recognized people, if unknown we save it in folder "unknown"
// So you can extend your dataset and retrain it afterwards for better recognitions
- extendDataset: false
+ extendDataset: false,
+ // if extenDataset is set, you need to set the full path of the dataset
+ dataset: 'modules/MMM-Face-Reco-DNN/dataset/'
},
timouts: {},
diff --git a/README.md b/README.md
index 8527c87..80bacd2 100644
--- a/README.md
+++ b/README.md
@@ -172,7 +172,9 @@ To setup the module in MagicMirror², add the following script int the config.js
welcomeMessage: true,
// Save some pictures from recognized people, if unknown we save it in folder "unknown"
// So you can extend your dataset and retrain it afterwards for better recognitions
- extendDataset: false
+ extendDataset: false,
+ // if extenDataset is set, you need to set the full path of the dataset
+ dataset: 'modules/MMM-Face-Reco-DNN/dataset/'
}
}
```
@@ -231,6 +233,7 @@ Config | Description
`pythonPath` | Path to Python where the Face-Recognition will run.
**Default Value:** `null`
`welcomeMessage` | Show Welcome Message over alert module from MagicMirror.
**Default Value:** `true`
`extendDataset` | Save some pictures from recognized people, if unknown we save it in folder "unknown". So you can extend your dataset and retrain it afterwards for better recognitions.
**Default Value:** `false`
+`dataset`| If extendDataset is set you need to set the path to the dataset as well.
**Default Value:** `modules/MMM-Face-Reco-DNN/dataset/`
## Credits
diff --git a/node_helper.js b/node_helper.js
index 7632112..4d326ba 100644
--- a/node_helper.js
+++ b/node_helper.js
@@ -26,7 +26,8 @@ module.exports = NodeHelper.create({
'--detectionMethod=' + this.config.detectionMethod,
'--interval=' + this.config.checkInterval,
'--output=' + this.config.output,
- '--extendDataset=' + extendedDataset
+ '--extendDataset=' + extendedDataset,
+ '--dataset=' + this.config.dataset
]
}