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
Would it at all be possible to dynamically load model / onnx files at runtime from a URL or preferably from the persistentDatapath?
For example:
Download a model via www.get, save to persistantDataPath then,
var modelPath = Path.Combine(Application.persistentDataPath, "models", "mymodel.onnx");
Model model = ModelLoader.Load(modelPath);
The text was updated successfully, but these errors were encountered:
Would it at all be possible to dynamically load model / onnx files at runtime from a URL or preferably from the persistentDatapath?
For example:
Download a model via www.get, save to persistantDataPath then,
var modelPath = Path.Combine(Application.persistentDataPath, "models", "mymodel.onnx");
Model model = ModelLoader.Load(modelPath);
The text was updated successfully, but these errors were encountered: