You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2020. It is now read-only.
When models are loaded they block the main thread. This can take up several seconds, especially in debug mode.
It would be nice if models were loaded asynchronously or in a background thread.
ModelHandle could have an pub fn is_loaded() -> bool { self.data.read().model.is_loaded } which allows the developer to check if the model is done loading. Iterating over the models that are not loaded would allow developers to show a progress bar.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When models are loaded they block the main thread. This can take up several seconds, especially in debug mode.
It would be nice if models were loaded asynchronously or in a background thread.
ModelHandle
could have anpub fn is_loaded() -> bool { self.data.read().model.is_loaded }
which allows the developer to check if the model is done loading. Iterating over the models that are not loaded would allow developers to show a progress bar.The text was updated successfully, but these errors were encountered: