[change][d]修复了一些兼容性问题,比如精度问题
修复了一些兼容性问题,比如精度问题,多余demo删除
Showing
babel.config.js
0 → 100644
examples/benchmark/app.vue
0 → 100644
examples/benchmark/config.vue
0 → 100644
examples/benchmark/index.html
0 → 100644
examples/benchmark/index.js
0 → 100644
examples/gesture/LMProcess.es6
0 → 100644
examples/gesture/anchor_small.txt
0 → 100644
此差异已折叠。
examples/gesture/hand.png
0 → 100644
26.2 KB
examples/gesture/index.es6
0 → 100644
examples/gesture/index.html
0 → 100644
examples/gesture/warpAffine.js
0 → 100644
examples/humanStream/index.css
0 → 100644
examples/humanStream/index.es6
0 → 100644
examples/humanStream/index.html
0 → 100644
examples/humanseg/index.es6
0 → 100644
examples/mnist/index.es6
已删除
100644 → 0
examples/mnist/index.html
已删除
100644 → 0
examples/mobileNet/banana.jpeg
0 → 100644
29.6 KB
examples/mobileNet/car.jpg
0 → 100644
755.6 KB
examples/mobileNetOpt/index.es6
0 → 100644
examples/terrorModel/custom.less
0 → 100644
examples/terrorModel/demo.png
0 → 100644
125.9 KB
examples/terrorModel/index.es6
0 → 100644
examples/terrorModel/index.html
0 → 100644
examples/wine/app.vue
0 → 100644
examples/wine/imgs/1.jpg
0 → 100755
443.1 KB
examples/wine/imgs/2.jpg
0 → 100755
418.9 KB
examples/wine/imgs/3.jpg
0 → 100755
682.6 KB
examples/wine/imgs/4.jpg
0 → 100755
469.0 KB
examples/wine/imgs/5.jpg
0 → 100755
467.2 KB
examples/wine/imgs/6.jpg
0 → 100755
481.4 KB
examples/wine/imgs/7.jpg
0 → 100755
439.4 KB
examples/wine/index.html
0 → 100644
examples/wine/index.js
0 → 100644
examples/wine/page.vue
0 → 100644
examples/wine/postProcess.js
0 → 100644
examples/yolo/index.es6
已删除
100644 → 0
此差异已折叠。
jest.config.js
0 → 100644
... | @@ -5,24 +5,31 @@ | ... | @@ -5,24 +5,31 @@ |
"main": "index.js", | "main": "index.js", | ||
"scripts": { | "scripts": { | ||
"server": "parcel ./src/index.html", | "server": "parcel ./src/index.html", | ||
"mnistdemo": "parcel ./examples/mnist/index.html", | |||
"mobilenet": "parcel ./examples/mobileNet/index.html", | "mobilenet": "parcel ./examples/mobileNet/index.html", | ||
"mobilenetOpt": "parcel ./examples/mobileNetOpt/index.html", | |||
"wine": "parcel ./examples/wine/index.html --port 1234", | |||
"tinyYolo": "parcel ./examples/tinyYolo/index.html", | "tinyYolo": "parcel ./examples/tinyYolo/index.html", | ||
"huangfan": "parcel ./examples/huangfan/index.html", | "huangfan": "parcel ./examples/huangfan/index.html", | ||
"terrorModel": "parcel ./examples/terrorModel/index.html", | "terrorModel": "parcel ./examples/terrorModel/index.html", | ||
"humanseg": "parcel ./examples/humanseg/index.html", | "humanseg": "parcel ./examples/humanseg/index.html", | ||
"humanStream": "parcel ./examples/humanStream/index.html --port 1234 --https", | "humanStream": "parcel ./examples/humanStream/index.html --port 1234 --https", | ||
"gesture": "parcel ./examples/gesture/index.html --port 8888 --https", | |||
"benchmark": "parcel ./examples/benchmark/index.html", | |||
"yolo": "parcel ./examples/yolo/index.html", | "yolo": "parcel ./examples/yolo/index.html", | ||
"videoDemo": "parcel ./examples/videoDemo.html --port 8123 --https", | "videoDemo": "parcel ./examples/tinyYolo/videoDemo.html --port 8123 --https", | ||
"unitTest": "parcel ./test/unitTest.html", | "unitTest": "parcel ./test/unitTest.html", | ||
"test": "echo \"Error: no test specified\" && exit 1", | "test": "jest", | ||
"build": "webpack -w" | "build": "parcel build ./examples/humanStream/index.html", | ||
"demo": "parcel ./examples/demo/index.html", | |||
"pub": "webpack" | |||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@babel/core": "^7.7.2", | "@babel/core": "^7.9.6", | ||
"@babel/preset-env": "^7.7.1", | "@babel/preset-env": "^7.9.6", | ||
"axios": "^0.19.2", | "@vue/component-compiler-utils": "^3.1.2", | ||
"axios": "^0.17.1", | |||
"babel-core": "^6.26.3", | "babel-core": "^6.26.3", | ||
"babel-jest": "^26.0.1", | |||
"babel-loader": "^8.0.6", | "babel-loader": "^8.0.6", | ||
"babel-plugin-transform-class-properties": "^6.24.1", | "babel-plugin-transform-class-properties": "^6.24.1", | ||
"babel-plugin-transform-decorators-legacy": "^1.3.5", | "babel-plugin-transform-decorators-legacy": "^1.3.5", | ||
... | @@ -32,19 +39,32 @@ | ... | @@ -32,19 +39,32 @@ |
"babel-preset-react": "^6.24.1", | "babel-preset-react": "^6.24.1", | ||
"babel-preset-stage-0": "^6.24.1", | "babel-preset-stage-0": "^6.24.1", | ||
"babel-runtime": "^6.26.0", | "babel-runtime": "^6.26.0", | ||
"gl": "^4.5.0", | |||
"jest": "^26.0.1", | |||
"less": "^3.11.1", | "less": "^3.11.1", | ||
"parcel-bundler": "^1.10.3", | "parcel-bundler": "^1.10.3", | ||
"pre-push": "^0.1.1", | |||
"pug": "^3.0.0", | |||
"typescript": "^3.9.5", | |||
"vue-template-compiler": "^2.6.11", | |||
"webpack-cli": "^3.3.6" | "webpack-cli": "^3.3.6" | ||
}, | }, | ||
"keywords": [], | "keywords": [], | ||
"pre-push": [ | |||
"test" | |||
], | |||
"author": "", | "author": "", | ||
"license": "ISC", | "license": "ISC", | ||
"dependencies": { | "dependencies": { | ||
"@babel/plugin-transform-runtime": "^7.6.2", | "@babel/plugin-transform-runtime": "^7.6.2", | ||
"@babel/runtime": "^7.7.2", | "@babel/runtime": "^7.7.2", | ||
"element-ui": "^2.13.2", | |||
"extract-text-webpack-plugin": "^4.0.0-beta.0", | "extract-text-webpack-plugin": "^4.0.0-beta.0", | ||
"js-file-download": "^0.4.10", | "js-file-download": "^0.4.10", | ||
"paddlejs": "^1.0.0-beta.0", | |||
"vconsole": "^3.3.2", | "vconsole": "^3.3.2", | ||
"vue": "^2.6.11", | |||
"vue-hot-reload-api": "^2.3.4", | |||
"webpack": "^4.39.2", | "webpack": "^4.39.2", | ||
"webpack-zepto": "0.0.1" | "webpack-zepto": "0.0.1" | ||
} | } | ||
... | ... |
此差异已折叠。
此差异已折叠。
src/shader/atom/prefix_half.es6
0 → 100644
此差异已折叠。
src/shader/concat_mul/conf.es6
0 → 100644
此差异已折叠。
src/shader/concat_mul/main.es6
0 → 100644
此差异已折叠。
src/shader/concat_mul/params.es6
0 → 100644
此差异已折叠。
src/shader/reshape/conf.es6
已删除
100644 → 0
此差异已折叠。
src/shader/reshape/main.es6
已删除
100644 → 0
此差异已折叠。
src/shader/reshape/params.es6
已删除
100644 → 0
此差异已折叠。
src/shader/transpose/conf.es6
已删除
100644 → 0
此差异已折叠。
src/shader/transpose/main.es6
已删除
100644 → 0
此差异已折叠。
此差异已折叠。
src/utils/environment.es6
0 → 100644
此差异已折叠。
此差异已折叠。
此差异已折叠。
test/data/model.test.relu6.json
0 → 100644
此差异已折叠。
test/data/model.test.reshape.json
0 → 100644
此差异已折叠。
test/data/wine.map.json
0 → 100644
此差异已折叠。
test/opTest/batchnorm.test.js
0 → 100644
此差异已折叠。
test/opTest/common/index.js
0 → 100644
此差异已折叠。
test/opTest/common/utils.js
0 → 100644
此差异已折叠。
test/opTest/concat.test.js
0 → 100644
此差异已折叠。
test/opTest/conv2d.test.js
0 → 100644
此差异已折叠。
此差异已折叠。
此差异已折叠。
test/opTest/mul.test.js
0 → 100644
此差异已折叠。
test/opTest/relu.test.js
0 → 100644
此差异已折叠。
test/opTest/relu6.test.js
0 → 100644
此差异已折叠。
test/opTest/reshape.test.js
0 → 100644
此差异已折叠。
test/opTest/scale.test.js
0 → 100644
此差异已折叠。
test/opTest/split.test.js
0 → 100644
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
tools/infer_model/huangfan/model
0 → 100644
此差异已折叠。
tools/infer_model/huangfan/params
0 → 100644
此差异已折叠。
此差异已折叠。