Path to /@vladmandic/human/models incorrect

pull/70/head
meeki007 2021-02-24 22:08:42 -05:00 committed by GitHub
parent a60038ac11
commit 9dab3665be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -14,17 +14,17 @@ const myConfig = {
videoOptimized: false, videoOptimized: false,
async: false, async: false,
face: { face: {
detector: { modelPath: 'file://models/faceboxes.json' }, // cannot use blazeface in nodejs due to missing required kernel function in tfjs-node detector: { modelPath: 'file://../models/faceboxes.json' }, // cannot use blazeface in nodejs due to missing required kernel function in tfjs-node
mesh: { modelPath: 'file://models/facemesh.json' }, mesh: { modelPath: 'file://../models/facemesh.json' },
iris: { modelPath: 'file://models/iris.json' }, iris: { modelPath: 'file://../models/iris.json' },
age: { modelPath: 'file://models/age-ssrnet-imdb.json' }, age: { modelPath: 'file://../models/age-ssrnet-imdb.json' },
gender: { modelPath: 'file://models/gender.json' }, gender: { modelPath: 'file://../models/gender-ssrnet-imdb.json' },
emotion: { modelPath: 'file://models/emotion-large.json' }, emotion: { modelPath: 'file://../models/emotion-large.json' },
}, },
body: { modelPath: 'file://models/posenet.json' }, body: { modelPath: 'file://../models/posenet.json' },
hand: { hand: {
detector: { modelPath: 'file://models/handdetect.json' }, detector: { modelPath: 'file://../models/handdetect.json' },
skeleton: { modelPath: 'file://models/handskeleton.json' }, skeleton: { modelPath: 'file://../models/handskeleton.json' },
}, },
}; };