TensorFlow-Unreal icon indicating copy to clipboard operation
TensorFlow-Unreal copied to clipboard

Async load and notify dependencies in TF Component

Open getnamo opened this issue 7 years ago • 0 comments

If dependencies aren't installed yet in a packaged build there may be a blocking load (usually in a black screen) and require a map restart to enable the tensorflow component.

This isn't ideal, consider try/catch importing or checking a json file on bootup and if it's not ready, wait for a signal from the dependency installs to continue with imports.

We could then expose a multicast delegate in the Tensorflow Component that notifies if dependencies are still pending (progress? likely will go 0 to 100 immediately), and when they're fully installed/ready. Devs could use this event to signal to user that there are installations going on and show e.g. a spinning widget.

getnamo avatar Oct 28 '18 19:10 getnamo