'multiply' not yet implemented or not found in the registry
See original GitHub issueFollowing are the versions of node-packages to reproduce the error “face-api.js”: “^0.22.2” “@tensorflow/tfjs-backend-cpu”: “^2.7.0” “@tensorflow/tfjs-backend-webgl”: “^2.7.0” “@tensorflow/tfjs-converter”: “^2.7.0” “@tensorflow/tfjs-core”: “^2.7.0”
I tried loading the tinyFaceDetectorModel, here is the code snippet
await faceapi.nets.tinyFaceDetector.loadFromUri('/models');
const input = document.querySelector("img");
const result = await faceapi.detectSingleFace(input,new faceapi.TinyFaceDetectorOptions());
It leads to this error: backend.js?8b87:504 Uncaught (in promise) Error: ‘multiply’ not yet implemented or not found in the registry. This kernel may not be supported by the tfjs backend you have chosen
Issue Analytics
- State:
- Created 3 years ago
- Reactions:5
- Comments:8
Top Results From Across the Web
'multiply' not yet implemented or not found in the registry #4030
Hi, today i upgrade tfjs from 2.4.0 => 2.5.0 and i have this error: Error: 'multiply' not yet implemented or not found in...
Read more >tfjs-core reference suddenly stop working and shows "No ...
I've checked the tfjs-core repository and there have been no new releases. I also tried to reference older stable version instead, but still...
Read more >@tensorflow/tfjs-backend-wasm - npm
Usage. This package adds a WebAssembly backend to TensorFlow.js. It currently supports the following models from our models repo:.
Read more >Untitled
On Windows 95, CORBAservices Naming Service operations will fail if the OBBVAR32.BAT file has not been executed to define the PATH, LIB, and...
Read more >Beyond Invert and Multiply, Grades 3-6: Making Sense of ...
Dust jacket/box for sets/online access code/bundled media may be missing. 100% GUARANTEE! Shipped with delivery confirmation, if you're not satisfied with ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
it’s well known that
face-api
is not compatible with tfjs 2.0+ - you just run into few issues (such asbatchNormalization
being deprecated so models need updating, not just JS code, etc.)i’ve spend a lot of time to rewrite parts, if you wish you can check out https://github.com/vladmandic/face-api
@dalelane I used TFJS 1.9 and it solved that error.