-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "node-red-contrib-machine-learning",
"version": "1.0.8",
"description": "Machine learning package for node-red.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"node-red",
"machine learning",
"ml",
"tensorflow",
"scikit learn",
"scikit",
"sklearn",
"classification",
"regression",
"clustering",
"outlier",
"novelty",
"anomaly",
"detection"
],
"author": "Gabriele Maurina",
"license": "ISC",
"node-red": {
"nodes": {
"create dataset": "nodes/dataset/create-dataset/create-dataset.js",
"load dataset": "nodes/dataset/load-dataset/load-dataset.js",
"predictor": "nodes/predictor/predictor.js",
"assessment": "nodes/assessment/assessment.js",
"decision tree classifier": "nodes/trainers/decision-tree-classifier/decision-tree-classifier.js",
"deep neural network classifier tensorflow": "nodes/trainers/deep-neural-network-classifier-tensorflow/deep-neural-network-classifier-tensorflow.js",
"k neighbors classifier": "nodes/trainers/k-neighbors-classifier/k-neighbors-classifier.js",
"multi layer perceptron classifier": "nodes/trainers/multi-layer-perceptron-classifier/multi-layer-perceptron-classifier.js",
"random forest classifier": "nodes/trainers/random-forest-classifier/random-forest-classifier.js",
"support vector classifier": "nodes/trainers/support-vector-classifier/support-vector-classifier.js",
"elliptic envelope classifier": "nodes/trainers/elliptic-envelope-classifier/elliptic-envelope-classifier.js",
"isolation forest classifier": "nodes/trainers/isolation-forest-classifier/isolation-forest-classifier.js",
"one class support vector classifier": "nodes/trainers/one-class-support-vector-classifier/one-class-support-vector-classifier.js"
}
},
"dependencies": {
"child_process": "^1.0.2",
"path": "^0.12.7"
},
"repository": {
"type": "git",
"url": "https://github.com/GabrieleMaurina/node-red-contrib-machine-learning.git"
}
}