leadal-auth 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{leadal-auth → lib}/leadal-auth.common.js +1 -1
- package/{leadal-auth → lib}/leadal-auth.umd.js +1 -1
- package/{leadal-auth → lib}/leadal-auth.umd.min.js +1 -1
- package/package.json +35 -9
- package/src/leadal-auth.css +1 -0
- package/babel.config.js +0 -5
- package/jsconfig.json +0 -19
- package/public/favicon.ico +0 -0
- package/public/index.html +0 -17
- package/public/models/age_gender_model-shard1 +0 -0
- package/public/models/age_gender_model-weights_manifest.json +0 -1
- package/public/models/face_expression_model-shard1 +0 -0
- package/public/models/face_expression_model-weights_manifest.json +0 -1
- package/public/models/face_landmark_68_model-shard1 +0 -0
- package/public/models/face_landmark_68_model-weights_manifest.json +0 -1
- package/public/models/face_landmark_68_tiny_model-shard1 +0 -0
- package/public/models/face_landmark_68_tiny_model-weights_manifest.json +0 -1
- package/public/models/face_recognition_model-shard1 +0 -0
- package/public/models/face_recognition_model-shard2 +0 -6
- package/public/models/face_recognition_model-weights_manifest.json +0 -1
- package/public/models/mtcnn_model-shard1 +0 -0
- package/public/models/mtcnn_model-weights_manifest.json +0 -1
- package/public/models/ssd_mobilenetv1_model-shard1 +0 -0
- package/public/models/ssd_mobilenetv1_model-shard2 +8 -137
- package/public/models/ssd_mobilenetv1_model-weights_manifest.json +0 -1
- package/public/models/tiny_face_detector_model-shard1 +0 -0
- package/public/models/tiny_face_detector_model-weights_manifest.json +0 -1
- package/vue.config.js +0 -43
- /package/{leadal-auth → lib}/demo.html +0 -0
- /package/{leadal-auth → lib}/img/finger-status-1-last.ad7c6895.png +0 -0
- /package/{leadal-auth → lib}/img/finger-status-1.220235cf.gif +0 -0
- /package/{leadal-auth → lib}/img/finger-status-2-last.52c6c2f8.png +0 -0
- /package/{leadal-auth → lib}/img/finger-status-2.482c9fce.gif +0 -0
- /package/{leadal-auth → lib}/img/finger-status-3-last.fc001fed.png +0 -0
- /package/{leadal-auth → lib}/img/finger-status-3.3e090300.gif +0 -0
- /package/{leadal-auth → lib}/img/finger-status-compeleted.fc001fed.png +0 -0
- /package/{leadal-auth → lib}/img/finger-status-start.a6cdd794.png +0 -0
- /package/{leadal-auth → lib}/img/img-camera.f5578f07.png +0 -0
- /package/{leadal-auth → lib}/leadal-auth.css +0 -0
package/package.json
CHANGED
|
@@ -1,21 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "leadal-auth",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"private": false,
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "lib/leadal-auth.umd.js",
|
|
6
|
+
"module": "lib/leadal-auth.common.js",
|
|
7
|
+
"unpkg": "lib/leadal-auth.umd.min.js",
|
|
8
|
+
"style": "src/leadal-auth.css",
|
|
9
|
+
"files": [
|
|
10
|
+
"lib/",
|
|
11
|
+
"src/"
|
|
12
|
+
],
|
|
6
13
|
"scripts": {
|
|
7
14
|
"serve": "vue-cli-service serve",
|
|
8
15
|
"build": "vue-cli-service build",
|
|
9
16
|
"lint": "vue-cli-service lint",
|
|
10
|
-
"package": "vue-cli-service build --target lib src/package/index.js --name leadal-auth --dest
|
|
17
|
+
"package": "vue-cli-service build --target lib src/package/index.js --name leadal-auth --dest lib && npm run copy-css",
|
|
18
|
+
"copy-css": "mkdir -p src && cp lib/leadal-auth.css src/leadal-auth.css",
|
|
19
|
+
"prepublishOnly": "npm run package"
|
|
11
20
|
},
|
|
12
21
|
"dependencies": {
|
|
13
|
-
"core-js": "^3.8.3",
|
|
14
22
|
"dayjs": "^1.11.13",
|
|
15
23
|
"element-ui": "^2.15.14",
|
|
16
24
|
"face-api.js": "^0.22.2",
|
|
17
|
-
"pinyin": "^4.0.0"
|
|
18
|
-
|
|
25
|
+
"pinyin": "^4.0.0"
|
|
26
|
+
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"vue": "^2.6.14",
|
|
29
|
+
"vuex": "^3.1.0",
|
|
30
|
+
"axios": "^1.11.0"
|
|
19
31
|
},
|
|
20
32
|
"devDependencies": {
|
|
21
33
|
"@babel/core": "^7.12.16",
|
|
@@ -24,11 +36,13 @@
|
|
|
24
36
|
"@vue/cli-plugin-eslint": "~5.0.0",
|
|
25
37
|
"@vue/cli-service": "~5.0.0",
|
|
26
38
|
"axios": "^1.11.0",
|
|
39
|
+
"core-js": "^3.8.3",
|
|
27
40
|
"eslint": "^7.32.0",
|
|
28
41
|
"eslint-plugin-vue": "^8.0.3",
|
|
29
42
|
"ld-auth": "^0.1.25",
|
|
30
43
|
"sass": "^1.89.2",
|
|
31
44
|
"sass-loader": "^16.0.5",
|
|
45
|
+
"vue": "^2.6.14",
|
|
32
46
|
"vue-template-compiler": "^2.6.14",
|
|
33
47
|
"vuex": "^3.1.0"
|
|
34
48
|
},
|
|
@@ -51,8 +65,20 @@
|
|
|
51
65
|
"last 2 versions",
|
|
52
66
|
"not dead"
|
|
53
67
|
],
|
|
54
|
-
"description": "
|
|
55
|
-
"keywords": [
|
|
68
|
+
"description": "Vue.js 组件库,包含人脸识别、指纹采集、身份证读取等认证功能",
|
|
69
|
+
"keywords": [
|
|
70
|
+
"vue",
|
|
71
|
+
"authentication",
|
|
72
|
+
"face-recognition",
|
|
73
|
+
"fingerprint",
|
|
74
|
+
"id-card",
|
|
75
|
+
"components"
|
|
76
|
+
],
|
|
56
77
|
"author": "",
|
|
57
|
-
"license": "ISC"
|
|
78
|
+
"license": "ISC",
|
|
79
|
+
"repository": {
|
|
80
|
+
"type": "git",
|
|
81
|
+
"url": ""
|
|
82
|
+
},
|
|
83
|
+
"homepage": ""
|
|
58
84
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.tree-select[data-v-1e13a420]{position:relative}.tree-container[data-v-1e13a420]{position:absolute;width:100%;border:1px solid #e4e7ed;z-index:999;background:#fff;top:34px;max-height:300px}.el-icon-arrow-down.is-reverse[data-v-1e13a420]{transform:rotate(180deg)}[data-v-1e13a420] .el-scrollbar__wrap{max-height:300px}.organ-tree[data-v-14d11cf8]{width:100%;height:100%;border:1px solid #cedded}.organ-tree .organ-tree-header[data-v-14d11cf8]{width:100%;height:50px;padding:0 10px;background:#f9fbfd;box-sizing:border-box}.organ-tree .organ-tree-header h3[data-v-14d11cf8]{font-size:16px;color:#525252;margin:0;padding:0}.organ-tree .organ-tree-header span[data-v-14d11cf8]{color:#4e91ea;cursor:pointer}.organ-tree[data-v-14d11cf8] .custom-tree-node{width:calc(100% - 34px);display:flex;align-items:center;justify-content:space-between}.organ-tree[data-v-14d11cf8] .custom-tree-node .node-text{max-width:calc(100% - 60px);display:inline-block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.organ-tree[data-v-14d11cf8] .custom-tree-node .action-buttons{opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}.organ-tree[data-v-14d11cf8] .custom-tree-node .action-buttons i{margin-left:4px;cursor:pointer;color:#606266}.organ-tree[data-v-14d11cf8] .custom-tree-node .action-buttons i:hover{color:#409eff}.organ-tree[data-v-14d11cf8] .custom-tree-node:hover .action-buttons{opacity:1;visibility:visible}.organ-tree[data-v-14d11cf8] .el-dialog__header{padding:10px}.organ-tree[data-v-14d11cf8] .el-dialog__header .el-dialog__headerbtn{top:14px}.organ-tree .organ-tree-content[data-v-14d11cf8]{width:100%;height:calc(100% - 50px)}[data-v-14d11cf8] .el-tree-node__content{display:flex;align-items:center;cursor:pointer;padding:5px 8px}.user-table[data-v-0b46f100]{width:100%;height:100%;padding:14px;border:1px solid #cedded;box-sizing:border-box}.user-table .user-opt[data-v-0b46f100]{width:100%;height:50px;padding-bottom:10px}.user-table .user-opt[data-v-0b46f100] .el-button{padding:7px 20px}.user-table .user-table-main[data-v-0b46f100]{width:100%;height:calc(100% - 50px)}.user-table .user-table-content[data-v-0b46f100]{width:100%;height:calc(100% - 40px)}.user-table .user-table-content .row-opt[data-v-0b46f100]{cursor:pointer;color:#3391ff}.user-table .user-table-pagination[data-v-0b46f100]{width:100%;height:40px}[data-v-0b46f100] .el-button{border-radius:8px}.user-info-main[data-v-7e1c92e8]{width:100%;height:100%}.user-info-main .collapse-title[data-v-7e1c92e8]{display:flex;color:#101010;font-size:16px;text-align:left;font-family:SourceHanSansSC-regular;align-items:center}.user-info-main .collapse-title .title-bar[data-v-7e1c92e8]{display:inline-block;margin-right:10px;width:4px;height:16px;font-size:16px;background:#3391ff}.user-info-main .form-item[data-v-7e1c92e8]{display:flex;flex-direction:column;align-items:center;width:calc(100% - 28px);padding:0 14px}.user-info-main .form-item .form-status[data-v-7e1c92e8]{padding:4px 6px;background:#f7f9fe}.user-info-main[data-v-7e1c92e8] .el-collapse{border:0}.user-info-main[data-v-7e1c92e8] .el-collapse-item__header,.user-info-main[data-v-7e1c92e8] .el-collapse-item__wrap{border-bottom:0}.user-info-main[data-v-7e1c92e8] .el-form-item{display:flex;flex-direction:column;align-items:center;width:calc(100% - 28px);padding:10px 14px 0 14px;margin-bottom:4px}.user-info-main[data-v-7e1c92e8] .el-form-item__content{width:100%;margin-left:0!important}.choose-camera-or-picture[data-v-361766db]{width:240px;height:240px;background:#fff;border:1px dashed #bfbfbf;border-radius:10px}.choose-camera-or-picture-title[data-v-361766db]{color:#333;font-size:16px}.choose-camera-or-picture-title[data-v-361766db]:hover{color:#008cd2}.upload-picture[data-v-8e8a413c]{width:100%;max-width:600px;min-height:240px}.upload-picture .uploaded-images[data-v-8e8a413c]{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:16px}.upload-picture .uploaded-images .image-item[data-v-8e8a413c]{position:relative;width:180px;height:180px;border-radius:10px;overflow:hidden;border:1px solid #e6e6e6}.upload-picture .uploaded-images .image-item img[data-v-8e8a413c]{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.upload-picture .uploaded-images .image-item .image-actions[data-v-8e8a413c]{position:absolute;top:8px;right:8px;background:rgba(0,0,0,.6);border-radius:50%;width:28px;height:28px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background-color .3s}.upload-picture .uploaded-images .image-item .image-actions[data-v-8e8a413c]:hover{background:hsla(0,87%,69%,.8)}.upload-picture .uploaded-images .image-item .image-actions i[data-v-8e8a413c]{color:#fff;font-size:14px}.upload-picture .avatar-uploader .upload-area[data-v-8e8a413c]{width:240px;height:240px;background:#fff;border:1px dashed #bfbfbf;border-radius:10px;cursor:pointer;transition:all .3s}.upload-picture .avatar-uploader .upload-area[data-v-8e8a413c]:hover:not(.uploading){border-color:#409eff}.upload-picture .avatar-uploader .upload-area.uploading[data-v-8e8a413c]{border-color:#409eff;background:#f0f9ff;cursor:not-allowed}.upload-picture .avatar-uploader .upload-area .upload-content[data-v-8e8a413c]{text-align:center}.upload-picture .avatar-uploader .upload-area .upload-content .upload-text[data-v-8e8a413c]{margin-top:12px;font-size:14px;color:#409eff;font-weight:500}.upload-picture .max-limit-tip[data-v-8e8a413c]{width:240px;height:240px;background:#f5f5f5;border:1px dashed #e6e6e6;border-radius:10px}.upload-picture .max-limit-tip .tip-content[data-v-8e8a413c]{text-align:center}.upload-picture .max-limit-tip .tip-content .tip-text[data-v-8e8a413c]{margin-top:12px;font-size:14px;color:#f56c6c}[data-v-8e8a413c] .el-upload{display:block}[data-v-8e8a413c] .el-upload-dragger{width:100%;height:100%;border:none;border-radius:10px;background:transparent}.face-detection[data-v-7c2b7702]{width:500px;height:480px;border-radius:8px;border:1px solid #e5e5e7}.face-detection-container[data-v-7c2b7702]{margin:0 auto;width:360px;height:360px;background:#fff;border-radius:12px;background:url(/img/img-camera.f5578f07.png) no-repeat 50%;background-size:100% 100%}.camera-container[data-v-7c2b7702]{position:relative;display:inline-block;border:2px solid #ddd;border-radius:50%;overflow:hidden;background:#000;width:240px;height:240px}.camera-container.detecting[data-v-7c2b7702]{border-color:#0f0;box-shadow:0 0 20px rgba(0,255,0,.3)}.overlay-canvas[data-v-7c2b7702]{position:absolute;top:0;left:0;pointer-events:none;border-radius:50%}.status-overlay[data-v-7c2b7702]{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);background:rgba(0,0,0,.8);color:#fff;padding:8px 16px;border-radius:20px;font-size:14px}.status-item[data-v-7c2b7702]{display:flex;align-items:center;gap:8px}.spinner[data-v-7c2b7702]{width:16px;height:16px;border:2px solid #333;border-top:2px solid #fff;border-radius:50%;animation:spin-7c2b7702 1s linear infinite}.pulse[data-v-7c2b7702]{width:12px;height:12px;background:#0f0;border-radius:50%;animation:pulse-7c2b7702 1s ease-in-out infinite}@keyframes spin-7c2b7702{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes pulse-7c2b7702{0%,to{opacity:1}50%{opacity:.5}}.results[data-v-7c2b7702]{position:absolute;top:0;left:0}.captured-image-container[data-v-7c2b7702],.results[data-v-7c2b7702]{display:flex;justify-content:center;align-items:center}.captured-face-image[data-v-7c2b7702]{border-radius:50%;-o-object-fit:cover;object-fit:cover}@media (max-width:768px){.face-detection-container[data-v-7c2b7702]{padding:10px}}.face-picture[data-v-0b73bca5]{position:relative;width:240px;height:240px;background:#fff;border:1px dashed #bfbfbf;border-radius:10px}.delete-batn[data-v-0b73bca5]{position:absolute;top:0;right:0;width:24px;background:#e5e5e7;height:24px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:0 0 0 4px}.delete-batn[data-v-0b73bca5] :hover{background:#e5e5e7}.dialog-header[data-v-6026fac0]{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border-bottom:1px solid #eee}.title[data-v-6026fac0]{font-size:18px;font-weight:500;color:#333}.close-icon[data-v-6026fac0]{width:16px;height:16px;cursor:pointer}.dialog-content[data-v-6026fac0]{padding:20px}.uploading-container[data-v-6026fac0]{display:flex;justify-content:center;align-items:center;width:360px;height:360px;background:#f0f9ff;border-radius:12px;border:2px dashed #409eff}.uploading-content[data-v-6026fac0]{text-align:center}.uploading-content .uploading-text[data-v-6026fac0]{margin-top:16px;font-size:16px;color:#409eff;font-weight:500}.uploading-content i[data-v-6026fac0]{animation:rotate-6026fac0 2s linear infinite}@keyframes rotate-6026fac0{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.error-container[data-v-6026fac0]{display:flex;justify-content:center;align-items:center;width:360px;height:360px;background:#fef0f0;border-radius:12px;border:2px dashed #f56c6c}.error-content[data-v-6026fac0]{text-align:center}.error-content .error-text[data-v-6026fac0]{margin-top:16px;font-size:18px;color:#f56c6c;font-weight:600}.error-content .error-desc[data-v-6026fac0]{margin-top:8px;font-size:14px;color:#999}.select-section[data-v-2a8d4408]{margin-bottom:52px;text-align:left;margin-left:100px}.select-button[data-v-2a8d4408]{font-size:14px;color:#8a97bb;padding:0}[data-v-56d9f150] .el-button{border-radius:8px}.finger-dialog[data-v-de87379c]{width:100%;height:100%;border-radius:12px;overflow:hidden;background:#f8f8fb}.dialog-header[data-v-de87379c]{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border-bottom:1px solid #eee}.title[data-v-de87379c]{font-size:18px;font-weight:500;color:#333}.close-icon[data-v-de87379c]{width:16px;height:16px;cursor:pointer}.finger-register-content[data-v-de87379c]{height:calc(100% - 182px);margin-left:24px;margin-right:24px;border-radius:12px}.hand-area[data-v-de87379c]{width:210px;display:flex;flex-direction:column;margin-left:20px}.hand-image-wrapper[data-v-de87379c]{display:flex;justify-content:center;align-items:center;position:relative;margin-bottom:20px}.hand-image[data-v-de87379c]{width:200px;height:260px;-o-object-fit:contain;object-fit:contain}.finger-buttons-overlay[data-v-de87379c]{position:absolute;top:0;left:0;width:100%;height:100%}.finger-circle[data-v-de87379c]{position:absolute;width:26px;height:26px;border-radius:50%;border:3px solid silver;background-color:#f8f8fb;cursor:pointer;transition:all .3s}.finger-circle[data-v-de87379c]:hover{transform:scale(1.1);box-shadow:0 0 5px rgba(59,128,239,.5)}.finger-circle.active[data-v-de87379c]{border:3px solid #3b80ef;background:#3b80ef3f}.finger-circle.ready[data-v-de87379c]{width:25px;height:25px;background:url(data:image/png;base64,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) no-repeat;background-size:100% 100%}.fingerprint-status[data-v-de87379c]{width:300px;height:300px;margin-left:32px;display:flex;flex-direction:column;border:1px dashed #d6d9e1;background:#fff;border-radius:12px}.status-header[data-v-de87379c]{padding:12px;background-color:#f5f5f5;border-bottom:1px solid #eee}.status-title[data-v-de87379c]{font-size:14px;color:#666}.fingerprint-image-container[data-v-de87379c]{flex:1;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:0 20px 20px 20px}.fingerprint-image[data-v-de87379c]{width:120px;height:120px;margin-bottom:20px}.status-text[data-v-de87379c]{font-size:14px;color:#999;text-align:center}.collect-progress[data-v-de87379c]{margin:0 20px 20px}.progress-text[data-v-de87379c]{font-size:14px;color:#666;margin-bottom:5px}.progress-bar[data-v-de87379c]{height:8px;background-color:#eee;border-radius:4px;overflow:hidden}.progress-inner[data-v-de87379c]{height:100%;background-color:#3b80ef;transition:width .3s}.dialog-footer .el-button[data-v-de87379c]{margin:20px 10px}.delete-button[data-v-de87379c]{width:100%;height:40px;display:flex;justify-content:flex-end;align-items:center}.auth-com[data-v-112e7717]{width:calc(100% - 48px);height:calc(100% - 48px);padding:16px}.auth-com .tab-main[data-v-112e7717]{width:100%;height:calc(100% - 56px)}.auth-com .tab-main .tab-content[data-v-112e7717]{width:100%;height:100%}[data-v-112e7717] .el-tabs__nav-wrap:after{background-color:transparent}[data-v-112e7717] .el-tabs__item{font-size:18px;color:#989898}.user-drawer[data-v-ee7490ee]{width:calc(100% - 4px);height:calc(100% - 4px);padding:0 2px}.user-drawer .user-drawer-header[data-v-ee7490ee]{height:50px;padding:0 0 0 12px;border-bottom:1px solid #ecebeb}.user-drawer .user-drawer-content[data-v-ee7490ee]{width:100%;height:calc(100% - 50px)}.user-drawer .user-drawer-content .user-auth[data-v-ee7490ee]{width:calc(100% - 460px);height:100%}.user-drawer .user-drawer-content .user-info[data-v-ee7490ee]{width:460px;height:100%;border-left:1px solid #ecebeb}.icon-back[data-v-ee7490ee]{cursor:pointer;display:flex;width:53px;height:44px;align-items:center;justify-content:space-between}.icon-back span[data-v-ee7490ee],.icon-back[data-v-ee7490ee]{color:#5a5a5a;font-weight:500;font-size:16px}.organ-manage[data-v-37d6a0fe]{width:100%;height:100%;position:relative}.organ-manage .organ-manage-tree[data-v-37d6a0fe]{width:300px;height:100%}.organ-manage .organ-manage-main[data-v-37d6a0fe]{width:calc(100% - 320px);height:100%}.mt-2{margin-top:2px}.pt-2{padding-top:2px}.mr-2{margin-right:2px}.pr-2{padding-right:2px}.mb-2{margin-bottom:2px}.pb-2{padding-bottom:2px}.ml-2{margin-left:2px}.pl-2{padding-left:2px}.p-2{padding:2px}.m-2{margin:2px}.fs-2{font-size:2px}.w-2{width:2px}.h-2{height:2px}.mt-4{margin-top:4px}.pt-4{padding-top:4px}.mr-4{margin-right:4px}.pr-4{padding-right:4px}.mb-4{margin-bottom:4px}.pb-4{padding-bottom:4px}.ml-4{margin-left:4px}.pl-4{padding-left:4px}.p-4{padding:4px}.m-4{margin:4px}.fs-4{font-size:4px}.w-4{width:4px}.h-4{height:4px}.mt-6{margin-top:6px}.pt-6{padding-top:6px}.mr-6{margin-right:6px}.pr-6{padding-right:6px}.mb-6{margin-bottom:6px}.pb-6{padding-bottom:6px}.ml-6{margin-left:6px}.pl-6{padding-left:6px}.p-6{padding:6px}.m-6{margin:6px}.fs-6{font-size:6px}.w-6{width:6px}.h-6{height:6px}.mt-8{margin-top:8px}.pt-8{padding-top:8px}.mr-8{margin-right:8px}.pr-8{padding-right:8px}.mb-8{margin-bottom:8px}.pb-8{padding-bottom:8px}.ml-8{margin-left:8px}.pl-8{padding-left:8px}.p-8{padding:8px}.m-8{margin:8px}.fs-8{font-size:8px}.w-8{width:8px}.h-8{height:8px}.mt-10{margin-top:10px}.pt-10{padding-top:10px}.mr-10{margin-right:10px}.pr-10{padding-right:10px}.mb-10{margin-bottom:10px}.pb-10{padding-bottom:10px}.ml-10{margin-left:10px}.pl-10{padding-left:10px}.p-10{padding:10px}.m-10{margin:10px}.fs-10{font-size:10px}.w-10{width:10px}.h-10{height:10px}.mt-12{margin-top:12px}.pt-12{padding-top:12px}.mr-12{margin-right:12px}.pr-12{padding-right:12px}.mb-12{margin-bottom:12px}.pb-12{padding-bottom:12px}.ml-12{margin-left:12px}.pl-12{padding-left:12px}.p-12{padding:12px}.m-12{margin:12px}.fs-12{font-size:12px}.w-12{width:12px}.h-12{height:12px}.mt-14{margin-top:14px}.pt-14{padding-top:14px}.mr-14{margin-right:14px}.pr-14{padding-right:14px}.mb-14{margin-bottom:14px}.pb-14{padding-bottom:14px}.ml-14{margin-left:14px}.pl-14{padding-left:14px}.p-14{padding:14px}.m-14{margin:14px}.fs-14{font-size:14px}.w-14{width:14px}.h-14{height:14px}.mt-16{margin-top:16px}.pt-16{padding-top:16px}.mr-16{margin-right:16px}.pr-16{padding-right:16px}.mb-16{margin-bottom:16px}.pb-16{padding-bottom:16px}.ml-16{margin-left:16px}.pl-16{padding-left:16px}.p-16{padding:16px}.m-16{margin:16px}.fs-16{font-size:16px}.w-16{width:16px}.h-16{height:16px}.mt-18{margin-top:18px}.pt-18{padding-top:18px}.mr-18{margin-right:18px}.pr-18{padding-right:18px}.mb-18{margin-bottom:18px}.pb-18{padding-bottom:18px}.ml-18{margin-left:18px}.pl-18{padding-left:18px}.p-18{padding:18px}.m-18{margin:18px}.fs-18{font-size:18px}.w-18{width:18px}.h-18{height:18px}.mt-20{margin-top:20px}.pt-20{padding-top:20px}.mr-20{margin-right:20px}.pr-20{padding-right:20px}.mb-20{margin-bottom:20px}.pb-20{padding-bottom:20px}.ml-20{margin-left:20px}.pl-20{padding-left:20px}.p-20{padding:20px}.m-20{margin:20px}.fs-20{font-size:20px}.w-20{width:20px}.h-20{height:20px}.mt-22{margin-top:22px}.pt-22{padding-top:22px}.mr-22{margin-right:22px}.pr-22{padding-right:22px}.mb-22{margin-bottom:22px}.pb-22{padding-bottom:22px}.ml-22{margin-left:22px}.pl-22{padding-left:22px}.p-22{padding:22px}.m-22{margin:22px}.fs-22{font-size:22px}.w-22{width:22px}.h-22{height:22px}.mt-24{margin-top:24px}.pt-24{padding-top:24px}.mr-24{margin-right:24px}.pr-24{padding-right:24px}.mb-24{margin-bottom:24px}.pb-24{padding-bottom:24px}.ml-24{margin-left:24px}.pl-24{padding-left:24px}.p-24{padding:24px}.m-24{margin:24px}.fs-24{font-size:24px}.w-24{width:24px}.h-24{height:24px}.mt-28{margin-top:28px}.pt-28{padding-top:28px}.mr-28{margin-right:28px}.pr-28{padding-right:28px}.mb-28{margin-bottom:28px}.pb-28{padding-bottom:28px}.ml-28{margin-left:28px}.pl-28{padding-left:28px}.p-28{padding:28px}.m-28{margin:28px}.fs-28{font-size:28px}.w-28{width:28px}.h-28{height:28px}.mt-30{margin-top:30px}.pt-30{padding-top:30px}.mr-30{margin-right:30px}.pr-30{padding-right:30px}.mb-30{margin-bottom:30px}.pb-30{padding-bottom:30px}.ml-30{margin-left:30px}.pl-30{padding-left:30px}.p-30{padding:30px}.m-30{margin:30px}.fs-30{font-size:30px}.w-30{width:30px}.h-30{height:30px}.mt-32{margin-top:32px}.pt-32{padding-top:32px}.mr-32{margin-right:32px}.pr-32{padding-right:32px}.mb-32{margin-bottom:32px}.pb-32{padding-bottom:32px}.ml-32{margin-left:32px}.pl-32{padding-left:32px}.p-32{padding:32px}.m-32{margin:32px}.fs-32{font-size:32px}.w-32{width:32px}.h-32{height:32px}.mt-36{margin-top:36px}.pt-36{padding-top:36px}.mr-36{margin-right:36px}.pr-36{padding-right:36px}.mb-36{margin-bottom:36px}.pb-36{padding-bottom:36px}.ml-36{margin-left:36px}.pl-36{padding-left:36px}.p-36{padding:36px}.m-36{margin:36px}.fs-36{font-size:36px}.w-36{width:36px}.h-36{height:36px}.mt-42{margin-top:42px}.pt-42{padding-top:42px}.mr-42{margin-right:42px}.pr-42{padding-right:42px}.mb-42{margin-bottom:42px}.pb-42{padding-bottom:42px}.ml-42{margin-left:42px}.pl-42{padding-left:42px}.p-42{padding:42px}.m-42{margin:42px}.fs-42{font-size:42px}.w-42{width:42px}.h-42{height:42px}.mt-48{margin-top:48px}.pt-48{padding-top:48px}.mr-48{margin-right:48px}.pr-48{padding-right:48px}.mb-48{margin-bottom:48px}.pb-48{padding-bottom:48px}.ml-48{margin-left:48px}.pl-48{padding-left:48px}.p-48{padding:48px}.m-48{margin:48px}.fs-48{font-size:48px}.w-48{width:48px}.h-48{height:48px}.flex-center{display:flex;justify-content:center}.flex-start{display:flex;justify-content:flex-start}.flex-end{display:flex;justify-content:flex-end}.flex-between{display:flex;justify-content:space-between}.flex-around{display:flex;justify-content:space-around}.cur-p{cursor:pointer}.flex-wrap,.no-wrap{flex-wrap:nowrap}.flex-1{flex:1}.fw-500{font-weight:500}.fw-bold{font-weight:700}.ui-button{border:0!important}.align-center{align-items:center}.loading-text{color:#fff;font-size:18px}.ld-c__empty{padding:10px 0;margin:0;text-align:center;color:#999;font-size:14px}.w100{width:100%}.h100{height:100%}.b-wt{background:#fff}.c-wt{color:#fff}.viewer-container{z-index:9999!important}.el-form-item__label,.el-input__inner{color:#333!important}.el-input.is-disabled .el-input__inner{color:#9a9a9a!important;border-color:#e0e0e0!important}.el-textarea__inner{color:#333!important}.el-textarea.is-disabled .el-textarea__inner{color:#9a9a9a!important;border-color:#e0e0e0!important}.dright-form{width:410px;border-left:1px solid #e0e0e0;padding:12px;height:100%}.delete-btn{font-size:14px;padding:0;color:#fff;border-radius:50%;height:22px;width:22px;line-height:-2px;text-align:center;cursor:pointer}.delete-btn,.delete-btn:hover{background:#ff5656}.send-footer{height:auto!important}.x-hidden{overflow-x:hidden!important}.op-05{opacity:.5}body{margin:0}span{font-size:14px}.f_center{justify-content:center}.f_around,.f_center{display:flex;align-items:center}.f_around{justify-content:space-around}.f_between{justify-content:space-between}.f_between,.f_end{display:flex;align-items:center}.f_end{justify-content:flex-end}.el-message{z-index:9999!important}
|
package/babel.config.js
DELETED
package/jsconfig.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es5",
|
|
4
|
-
"module": "esnext",
|
|
5
|
-
"baseUrl": "./",
|
|
6
|
-
"moduleResolution": "node",
|
|
7
|
-
"paths": {
|
|
8
|
-
"@/*": [
|
|
9
|
-
"src/*"
|
|
10
|
-
]
|
|
11
|
-
},
|
|
12
|
-
"lib": [
|
|
13
|
-
"esnext",
|
|
14
|
-
"dom",
|
|
15
|
-
"dom.iterable",
|
|
16
|
-
"scripthost"
|
|
17
|
-
]
|
|
18
|
-
}
|
|
19
|
-
}
|
package/public/favicon.ico
DELETED
|
Binary file
|
package/public/index.html
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
|
-
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
|
8
|
-
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
9
|
-
</head>
|
|
10
|
-
<body>
|
|
11
|
-
<noscript>
|
|
12
|
-
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
13
|
-
</noscript>
|
|
14
|
-
<div id="app"></div>
|
|
15
|
-
<!-- built files will be auto injected -->
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[{"weights":[{"name":"entry_flow/conv_in/filters","shape":[3,3,3,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005431825039433498,"min":-0.7441600304023892}},{"name":"entry_flow/conv_in/bias","shape":[32],"dtype":"float32"},{"name":"entry_flow/reduction_block_0/separable_conv0/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005691980614381678,"min":-0.6090419257388395}},{"name":"entry_flow/reduction_block_0/separable_conv0/pointwise_filter","shape":[1,1,32,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.009089225881239947,"min":-1.1179747833925135}},{"name":"entry_flow/reduction_block_0/separable_conv0/bias","shape":[64],"dtype":"float32"},{"name":"entry_flow/reduction_block_0/separable_conv1/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00683894624897078,"min":-0.8138346036275228}},{"name":"entry_flow/reduction_block_0/separable_conv1/pointwise_filter","shape":[1,1,64,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.011632566358528886,"min":-1.3028474321552352}},{"name":"entry_flow/reduction_block_0/separable_conv1/bias","shape":[64],"dtype":"float32"},{"name":"entry_flow/reduction_block_0/expansion_conv/filters","shape":[1,1,32,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010254812240600587,"min":-0.9229331016540528}},{"name":"entry_flow/reduction_block_0/expansion_conv/bias","shape":[64],"dtype":"float32"},{"name":"entry_flow/reduction_block_1/separable_conv0/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0052509616403018725,"min":-0.6406173201168285}},{"name":"entry_flow/reduction_block_1/separable_conv0/pointwise_filter","shape":[1,1,64,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010788509424994973,"min":-1.4564487723743214}},{"name":"entry_flow/reduction_block_1/separable_conv0/bias","shape":[128],"dtype":"float32"},{"name":"entry_flow/reduction_block_1/separable_conv1/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00553213918910307,"min":-0.7025816770160899}},{"name":"entry_flow/reduction_block_1/separable_conv1/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.013602388606351965,"min":-1.6186842441558837}},{"name":"entry_flow/reduction_block_1/separable_conv1/bias","shape":[128],"dtype":"float32"},{"name":"entry_flow/reduction_block_1/expansion_conv/filters","shape":[1,1,64,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.007571851038465313,"min":-1.158493208885193}},{"name":"entry_flow/reduction_block_1/expansion_conv/bias","shape":[128],"dtype":"float32"},{"name":"middle_flow/main_block_0/separable_conv0/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005766328409606335,"min":-0.6688940955143349}},{"name":"middle_flow/main_block_0/separable_conv0/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.012136116214826995,"min":-1.5776951079275094}},{"name":"middle_flow/main_block_0/separable_conv0/bias","shape":[128],"dtype":"float32"},{"name":"middle_flow/main_block_0/separable_conv1/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004314773222979377,"min":-0.5652352922102984}},{"name":"middle_flow/main_block_0/separable_conv1/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.01107162026798024,"min":-1.2400214700137868}},{"name":"middle_flow/main_block_0/separable_conv1/bias","shape":[128],"dtype":"float32"},{"name":"middle_flow/main_block_0/separable_conv2/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0036451735917259667,"min":-0.4848080876995536}},{"name":"middle_flow/main_block_0/separable_conv2/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.008791744942758598,"min":-1.134135097615859}},{"name":"middle_flow/main_block_0/separable_conv2/bias","shape":[128],"dtype":"float32"},{"name":"middle_flow/main_block_1/separable_conv0/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004915751896652521,"min":-0.6095532351849126}},{"name":"middle_flow/main_block_1/separable_conv0/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010868691463096469,"min":-1.3368490499608656}},{"name":"middle_flow/main_block_1/separable_conv0/bias","shape":[128],"dtype":"float32"},{"name":"middle_flow/main_block_1/separable_conv1/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005010117269029804,"min":-0.6012140722835765}},{"name":"middle_flow/main_block_1/separable_conv1/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010311148213405235,"min":-1.3816938605963016}},{"name":"middle_flow/main_block_1/separable_conv1/bias","shape":[128],"dtype":"float32"},{"name":"middle_flow/main_block_1/separable_conv2/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004911523706772748,"min":-0.7367285560159123}},{"name":"middle_flow/main_block_1/separable_conv2/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.008976466047997568,"min":-1.2207993825276693}},{"name":"middle_flow/main_block_1/separable_conv2/bias","shape":[128],"dtype":"float32"},{"name":"exit_flow/reduction_block/separable_conv0/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005074804436926748,"min":-0.7104726211697447}},{"name":"exit_flow/reduction_block/separable_conv0/pointwise_filter","shape":[1,1,128,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.011453078307357489,"min":-1.4545409450344011}},{"name":"exit_flow/reduction_block/separable_conv0/bias","shape":[256],"dtype":"float32"},{"name":"exit_flow/reduction_block/separable_conv1/depthwise_filter","shape":[3,3,256,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.007741751390344957,"min":-1.1380374543807086}},{"name":"exit_flow/reduction_block/separable_conv1/pointwise_filter","shape":[1,1,256,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.011347713189966538,"min":-1.497898141075583}},{"name":"exit_flow/reduction_block/separable_conv1/bias","shape":[256],"dtype":"float32"},{"name":"exit_flow/reduction_block/expansion_conv/filters","shape":[1,1,128,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006717281014311547,"min":-0.8329428457746318}},{"name":"exit_flow/reduction_block/expansion_conv/bias","shape":[256],"dtype":"float32"},{"name":"exit_flow/separable_conv/depthwise_filter","shape":[3,3,256,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0027201742518181892,"min":-0.3237007359663645}},{"name":"exit_flow/separable_conv/pointwise_filter","shape":[1,1,256,512],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010076364348916447,"min":-1.330080094056971}},{"name":"exit_flow/separable_conv/bias","shape":[512],"dtype":"float32"},{"name":"fc/age/weights","shape":[512,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.008674054987290326,"min":-1.2664120281443876}},{"name":"fc/age/bias","shape":[1],"dtype":"float32"},{"name":"fc/gender/weights","shape":[512,2],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0029948226377075793,"min":-0.34140978069866407}},{"name":"fc/gender/bias","shape":[2],"dtype":"float32"}],"paths":["age_gender_model-shard1"]}]
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[{"weights":[{"name":"dense0/conv0/filters","shape":[3,3,3,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0057930146946626555,"min":-0.7125408074435067}},{"name":"dense0/conv0/bias","shape":[32],"dtype":"float32"},{"name":"dense0/conv1/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006473719839956246,"min":-0.6408982641556684}},{"name":"dense0/conv1/pointwise_filter","shape":[1,1,32,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010509579321917366,"min":-1.408283629136927}},{"name":"dense0/conv1/bias","shape":[32],"dtype":"float32"},{"name":"dense0/conv2/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005666389652326995,"min":-0.7252978754978554}},{"name":"dense0/conv2/pointwise_filter","shape":[1,1,32,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010316079270605948,"min":-1.1760330368490781}},{"name":"dense0/conv2/bias","shape":[32],"dtype":"float32"},{"name":"dense0/conv3/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0063220320963392074,"min":-0.853474333005793}},{"name":"dense0/conv3/pointwise_filter","shape":[1,1,32,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010322785377502442,"min":-1.4658355236053466}},{"name":"dense0/conv3/bias","shape":[32],"dtype":"float32"},{"name":"dense1/conv0/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0042531527724920535,"min":-0.5741756242864272}},{"name":"dense1/conv0/pointwise_filter","shape":[1,1,32,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010653339647779278,"min":-1.1825207009035}},{"name":"dense1/conv0/bias","shape":[64],"dtype":"float32"},{"name":"dense1/conv1/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005166931012097527,"min":-0.6355325144879957}},{"name":"dense1/conv1/pointwise_filter","shape":[1,1,64,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.011478300188101974,"min":-1.3888743227603388}},{"name":"dense1/conv1/bias","shape":[64],"dtype":"float32"},{"name":"dense1/conv2/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006144821410085641,"min":-0.8479853545918185}},{"name":"dense1/conv2/pointwise_filter","shape":[1,1,64,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010541967317169788,"min":-1.3809977185492421}},{"name":"dense1/conv2/bias","shape":[64],"dtype":"float32"},{"name":"dense1/conv3/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005769844849904378,"min":-0.686611537138621}},{"name":"dense1/conv3/pointwise_filter","shape":[1,1,64,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010939095534530341,"min":-1.2689350820055196}},{"name":"dense1/conv3/bias","shape":[64],"dtype":"float32"},{"name":"dense2/conv0/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0037769308277204924,"min":-0.40790852939381317}},{"name":"dense2/conv0/pointwise_filter","shape":[1,1,64,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.01188667194516051,"min":-1.4382873053644218}},{"name":"dense2/conv0/bias","shape":[128],"dtype":"float32"},{"name":"dense2/conv1/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006497045825509464,"min":-0.8381189114907208}},{"name":"dense2/conv1/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.011632198913424622,"min":-1.3377028750438316}},{"name":"dense2/conv1/bias","shape":[128],"dtype":"float32"},{"name":"dense2/conv2/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005947182225246056,"min":-0.7969224181829715}},{"name":"dense2/conv2/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.011436844339557722,"min":-1.4524792311238306}},{"name":"dense2/conv2/bias","shape":[128],"dtype":"float32"},{"name":"dense2/conv3/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006665432686899222,"min":-0.8998334127313949}},{"name":"dense2/conv3/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.01283421422920975,"min":-1.642779421338848}},{"name":"dense2/conv3/bias","shape":[128],"dtype":"float32"},{"name":"dense3/conv0/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004711699953266218,"min":-0.6737730933170692}},{"name":"dense3/conv0/pointwise_filter","shape":[1,1,128,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010955964817720302,"min":-1.3914075318504784}},{"name":"dense3/conv0/bias","shape":[256],"dtype":"float32"},{"name":"dense3/conv1/depthwise_filter","shape":[3,3,256,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00554193468654857,"min":-0.7149095745647656}},{"name":"dense3/conv1/pointwise_filter","shape":[1,1,256,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.016790372250126858,"min":-2.484975093018775}},{"name":"dense3/conv1/bias","shape":[256],"dtype":"float32"},{"name":"dense3/conv2/depthwise_filter","shape":[3,3,256,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006361540626077091,"min":-0.8142772001378676}},{"name":"dense3/conv2/pointwise_filter","shape":[1,1,256,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.01777329678628959,"min":-1.7062364914838006}},{"name":"dense3/conv2/bias","shape":[256],"dtype":"float32"},{"name":"dense3/conv3/depthwise_filter","shape":[3,3,256,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006900275922289082,"min":-0.8625344902861353}},{"name":"dense3/conv3/pointwise_filter","shape":[1,1,256,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.015449936717164282,"min":-1.9003422162112067}},{"name":"dense3/conv3/bias","shape":[256],"dtype":"float32"},{"name":"fc/weights","shape":[256,7],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004834276554631252,"min":-0.7203072066400565}},{"name":"fc/bias","shape":[7],"dtype":"float32"}],"paths":["face_expression_model-shard1"]}]
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[{"weights":[{"name":"dense0/conv0/filters","shape":[3,3,3,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004853619781194949,"min":-0.5872879935245888}},{"name":"dense0/conv0/bias","shape":[32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004396426443960153,"min":-0.7298067896973853}},{"name":"dense0/conv1/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00635151559231328,"min":-0.5589333721235686}},{"name":"dense0/conv1/pointwise_filter","shape":[1,1,32,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.009354315552057004,"min":-1.2628325995276957}},{"name":"dense0/conv1/bias","shape":[32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0029380727048013726,"min":-0.5846764682554731}},{"name":"dense0/conv2/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0049374802439820535,"min":-0.6171850304977566}},{"name":"dense0/conv2/pointwise_filter","shape":[1,1,32,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.009941946758943446,"min":-1.3421628124573652}},{"name":"dense0/conv2/bias","shape":[32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0030300481062309416,"min":-0.5272283704841838}},{"name":"dense0/conv3/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005672684837790097,"min":-0.7431217137505026}},{"name":"dense0/conv3/pointwise_filter","shape":[1,1,32,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010712201455060173,"min":-1.5639814124387852}},{"name":"dense0/conv3/bias","shape":[32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0030966934035806097,"min":-0.3839899820439956}},{"name":"dense1/conv0/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0039155554537679636,"min":-0.48161332081345953}},{"name":"dense1/conv0/pointwise_filter","shape":[1,1,32,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.01023082966898002,"min":-1.094698774580862}},{"name":"dense1/conv0/bias","shape":[64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0027264176630506327,"min":-0.3871513081531898}},{"name":"dense1/conv1/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004583378632863362,"min":-0.5454220573107401}},{"name":"dense1/conv1/pointwise_filter","shape":[1,1,64,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00915846403907327,"min":-1.117332612766939}},{"name":"dense1/conv1/bias","shape":[64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.003091680419211294,"min":-0.5966943209077797}},{"name":"dense1/conv2/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005407439727409214,"min":-0.708374604290607}},{"name":"dense1/conv2/pointwise_filter","shape":[1,1,64,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00946493943532308,"min":-1.2399070660273235}},{"name":"dense1/conv2/bias","shape":[64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004409168514550901,"min":-0.9788354102303}},{"name":"dense1/conv3/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004478132958505668,"min":-0.6493292789833219}},{"name":"dense1/conv3/pointwise_filter","shape":[1,1,64,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.011063695888893277,"min":-1.2501976354449402}},{"name":"dense1/conv3/bias","shape":[64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.003909627596537272,"min":-0.6646366914113363}},{"name":"dense2/conv0/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.003213915404151468,"min":-0.3374611174359041}},{"name":"dense2/conv0/pointwise_filter","shape":[1,1,64,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010917326048308728,"min":-1.4520043644250609}},{"name":"dense2/conv0/bias","shape":[128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.002800439152063108,"min":-0.38085972468058266}},{"name":"dense2/conv1/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0050568851770139206,"min":-0.6927932692509071}},{"name":"dense2/conv1/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.01074961213504567,"min":-1.3222022926106174}},{"name":"dense2/conv1/bias","shape":[128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0030654204242369708,"min":-0.5487102559384177}},{"name":"dense2/conv2/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00591809165244009,"min":-0.917304206128214}},{"name":"dense2/conv2/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.01092823346455892,"min":-1.366029183069865}},{"name":"dense2/conv2/bias","shape":[128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.002681120470458386,"min":-0.36463238398234055}},{"name":"dense2/conv3/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0048311497650894465,"min":-0.5797379718107336}},{"name":"dense2/conv3/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.011227761062921263,"min":-1.4483811771168429}},{"name":"dense2/conv3/bias","shape":[128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0034643323982463162,"min":-0.3360402426298927}},{"name":"dense3/conv0/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.003394978887894574,"min":-0.49227193874471326}},{"name":"dense3/conv0/pointwise_filter","shape":[1,1,128,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010051267287310432,"min":-1.2765109454884247}},{"name":"dense3/conv0/bias","shape":[256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.003142924752889895,"min":-0.4588670139219247}},{"name":"dense3/conv1/depthwise_filter","shape":[3,3,256,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00448304671867221,"min":-0.5872791201460595}},{"name":"dense3/conv1/pointwise_filter","shape":[1,1,256,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.016063522357566685,"min":-2.3613377865623026}},{"name":"dense3/conv1/bias","shape":[256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00287135781026354,"min":-0.47664539650374765}},{"name":"dense3/conv2/depthwise_filter","shape":[3,3,256,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006002906724518421,"min":-0.7923836876364315}},{"name":"dense3/conv2/pointwise_filter","shape":[1,1,256,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.017087187019048954,"min":-1.6061955797906016}},{"name":"dense3/conv2/bias","shape":[256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.003124481205846749,"min":-0.46242321846531886}},{"name":"dense3/conv3/depthwise_filter","shape":[3,3,256,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006576311588287353,"min":-1.0193282961845398}},{"name":"dense3/conv3/pointwise_filter","shape":[1,1,256,256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.015590153955945782,"min":-1.99553970636106}},{"name":"dense3/conv3/bias","shape":[256],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.004453541601405424,"min":-0.6546706154065973}},{"name":"fc/weights","shape":[256,136],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.010417488509533453,"min":-1.500118345372817}},{"name":"fc/bias","shape":[136],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0025084222648658005,"min":0.07683877646923065}}],"paths":["face_landmark_68_model-shard1"]}]
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[{"weights":[{"name":"dense0/conv0/filters","shape":[3,3,3,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.008194216092427571,"min":-0.9423348506291708}},{"name":"dense0/conv0/bias","shape":[32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006839508168837603,"min":-0.8412595047670252}},{"name":"dense0/conv1/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.009194007106855804,"min":-1.2779669878529567}},{"name":"dense0/conv1/pointwise_filter","shape":[1,1,32,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0036026100317637128,"min":-0.3170296827952067}},{"name":"dense0/conv1/bias","shape":[32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.000740380117706224,"min":-0.06367269012273527}},{"name":"dense0/conv2/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":1,"min":0}},{"name":"dense0/conv2/pointwise_filter","shape":[1,1,32,32],"dtype":"float32","quantization":{"dtype":"uint8","scale":1,"min":0}},{"name":"dense0/conv2/bias","shape":[32],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0037702228508743585,"min":-0.6220867703942692}},{"name":"dense1/conv0/depthwise_filter","shape":[3,3,32,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0033707996209462483,"min":-0.421349952618281}},{"name":"dense1/conv0/pointwise_filter","shape":[1,1,32,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.014611541991140328,"min":-1.8556658328748217}},{"name":"dense1/conv0/bias","shape":[64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.002832523046755323,"min":-0.30307996600281956}},{"name":"dense1/conv1/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.006593170586754294,"min":-0.6329443763284123}},{"name":"dense1/conv1/pointwise_filter","shape":[1,1,64,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.012215249211180444,"min":-1.6001976466646382}},{"name":"dense1/conv1/bias","shape":[64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.002384825547536214,"min":-0.3028728445370992}},{"name":"dense1/conv2/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005859645441466687,"min":-0.7617539073906693}},{"name":"dense1/conv2/pointwise_filter","shape":[1,1,64,64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.013121426806730382,"min":-1.7845140457153321}},{"name":"dense1/conv2/bias","shape":[64],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0032247188044529336,"min":-0.46435950784122243}},{"name":"dense2/conv0/depthwise_filter","shape":[3,3,64,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.002659512618008782,"min":-0.32977956463308894}},{"name":"dense2/conv0/pointwise_filter","shape":[1,1,64,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.015499923743453681,"min":-1.9839902391620712}},{"name":"dense2/conv0/bias","shape":[128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0032450980999890497,"min":-0.522460794098237}},{"name":"dense2/conv1/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.005911862382701799,"min":-0.792189559282041}},{"name":"dense2/conv1/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.021025861478319356,"min":-2.2077154552235325}},{"name":"dense2/conv1/bias","shape":[128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.00349616945958605,"min":-0.46149436866535865}},{"name":"dense2/conv2/depthwise_filter","shape":[3,3,128,1],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.008104994250278847,"min":-1.013124281284856}},{"name":"dense2/conv2/pointwise_filter","shape":[1,1,128,128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.029337059282789044,"min":-3.5791212325002633}},{"name":"dense2/conv2/bias","shape":[128],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0038808938334969913,"min":-0.4230174278511721}},{"name":"fc/weights","shape":[128,136],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.014016061670639936,"min":-1.8921683255363912}},{"name":"fc/bias","shape":[136],"dtype":"float32","quantization":{"dtype":"uint8","scale":0.0029505149698724935,"min":0.088760145008564}}],"paths":["face_landmark_68_tiny_model-shard1"]}]
|
|
Binary file
|