Skip to content Skip to sidebar Skip to footer

Tfjs-core Reference Suddenly Stop Working And Shows "no Backend Found In Registry." Error

I'm working on a demo project involving Handpose and tensorflow libraries. Everything was working okay, but now, having done no changes to both the code nor the environment, the fo

Solution 1:

<scriptsrc="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-core"></script><scriptsrc="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-converter"></script><scriptsrc="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-backend-webgl"></script><scriptsrc="https://cdn.jsdelivr.net/npm/@tensorflow-models/handpose"></script>

Tensorflow released 2.0.0, and now you must choose either tfjs-backend-webgl, tfjs-backend-cpu, or tfjs-backend-wasm to run your model. You're using handpose and for that you should use webgl.

Duplicate of Handpose tfjs Error - No backend found in registry

Post a Comment for "Tfjs-core Reference Suddenly Stop Working And Shows "no Backend Found In Registry." Error"