forked from tensorflow/tfjs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.29 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
{
"name": "tfjs-examples-mnist-node",
"version": "0.1.0",
"description": "",
"license": "Apache-2.0",
"private": true,
"scripts": {
"eval-fashion-mnist": "babel-node eval_mnist.js fashion-mnist",
"eval-housing": "babel-node eval_housing.js",
"eval-mnist": "babel-node eval_mnist.js mnist",
"eval-MobileNetV2": "babel-node eval_mobilenetv2.js",
"test": "./run_tests.sh",
"train-fashion-mnist": "babel-node train_mnist.js fashion-mnist",
"train-housing": "babel-node train_housing.js",
"train-mnist": "babel-node train_mnist.js mnist",
"quantize-and-evaluate-fashion-mnist": "./quantize_evaluate.sh fashion-mnist",
"quantize-and-evaluate-housing": "./quantize_evaluate.sh housing",
"quantize-and-evaluate-mnist": "./quantize_evaluate.sh mnist",
"quantize-and-evaluate-MobileNetV2": "./quantize_evaluate.sh MobileNetV2"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/node": "7.17.10",
"@babel/preset-env": "7.18.2",
"@tensorflow/tfjs-node": "^1.3.2",
"@tensorflow/tfjs-node-gpu": "^1.3.2",
"argparse": "^1.0.10",
"clang-format": "~1.2.2",
"jimp": "^0.16.1",
"progress": "^2.0.3",
"shelljs": "^0.8.5"
},
"resolutions": {
"node-fetch": "2.6.7",
"glob-parent": "5.1.2",
"braces": "2.3.1"
}
}