question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

´No backend found in registry´, on Tensorflow.js using Handpose model

See original GitHub issue

TensorFlow.js version

1.7.4

Browser version

Microsoft Edge 83.0.478.37 [OS: Windows 10]

Describe the problem or feature request

I’m using the Tensorflow’s Handpose Model for my dissertation and recently an error occurs indicating “No backend found in registry”, when loading the model as seen below:

Error image.

This only recently happened (two days ago), so I believe it might be related to Tensorflow.js new updated version.

Code to reproduce the bug / link to feature request

Load scripts <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-core"></script> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-converter"></script> <script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/handpose"></script>

Load model (where the problem persists) const model = await handpose.load();

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

2reactions
ferolo3000commented, Feb 1, 2021

I tried thise and worked for me:

<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-core"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-converter"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-backend-webgl"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/handpose"></script>
0reactions
LastLombaxcommented, May 29, 2020

That worked and now I have it working again!

Thank you very much, @tafsiri!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Handpose tfjs Error - No backend found in registry
I had mistakenly come up with my own import line: import backend from '@tensorflow/tfjs-backend-webgl'. Correct version:.
Read more >
No backend found in registry.
You received this message because you are subscribed to the Google Groups "TensorFlow.js Discussion" group. To unsubscribe from this group and stop ...
Read more >
tensorflow/tfjs-backend-wasm
This package adds a WebAssembly backend to TensorFlow.js. It currently supports the following models from our models repo:.
Read more >
A practical guide on using TensorFlow.js models in offline ...
A practical guide on how to use TensorFlow.js models in Electron applications for offline usage.
Read more >
Golan Levin
The error I'm getting with tfjs 2.0.0 + handpose is `engine.ts:356 Uncaught (in promise) Error: No backend found in registry.`. Feels like maybe...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found