-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
46 lines (46 loc) · 1 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
{
"name": "regl-cnn",
"version": "0.1.0",
"description": "Digit recognition with Convolutional Neural Networks in WebGL",
"main": "digit.js",
"dependencies": {},
"devDependencies": {
"budo": "^9.0.0",
"cwise": "^1.0.9",
"ndarray": "^1.0.18",
"ndarray-gemm": "^1.0.0",
"ndarray-ops": "^1.2.2",
"regl": "^1.0.0",
"resl": "^1.0.2",
"standard": "^7.1.2",
"zeros": "^1.0.0"
},
"scripts": {
"test": "standard && cd src && budo --live --open test.js",
"start": "cd src && budo --live --open digit.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Erkaman/regl-cnn.git"
},
"keywords": [
"regl",
"digit",
"recognition",
"MNIST",
"mnist",
"CNN",
"Convolutional",
"Neural",
"Network",
"Networks",
"WebGL",
"GPGPU"
],
"author": "Eric Arnebäck",
"license": "MIT",
"bugs": {
"url": "https://github.com/Erkaman/regl-cnn/issues"
},
"homepage": "https://github.com/Erkaman/regl-cnn"
}