-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 791 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 791 Bytes
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
{
"name": "dnn",
"version": "0.1.0",
"description": "Deep learning library for Node.js. (includes MLP, RBM, DBN, CRBM, CDBN)",
"main": "./lib/dnn",
"repository": {
"type": "git",
"url": "git://github.com/junku901/dnn"
},
"keywords": [
"deep learning",
"dnn",
"deep neural network",
"neural network",
"machine learning",
"deep belief network",
"mlp",
"boltzmann machine",
"restricted boltzmann machine",
"multi layer perceptron",
"logistic regression",
"ml"
],
"author": {"name":"Joon-Ku Kang","email":"junku901@gmail.com"},
"license": "MIT",
"dependencies": {},
"engines": {
"node": "*"
}
}