Roman Rädle
Roman Rädle
The issue described above leads to inconsistent document states in Quill. **To Reproduce** Steps to reproduce the behavior: 1. Clone yjs-demos project to `yjs-demos` 2. `(cd yjs-demos/demo-server && npm install)`...
Thanks for the swift response, @dmonad !! I did a quick test with the linked [codesandbox.io](https://codesandbox.io/s/busy-cannon-59l6t?file=/src/index.ts). The results for the attributes with and without a timeout are still different. In...
The `torch.jit.mobile` has a [`_backport_for_mobile`](https://cs.github.com/pytorch/pytorch/blob/730fef25c71dfb7c7d3f403df48541cc0aac154d/torch/jit/mobile/__init__.py#L139) function to "backport" a model to a given version ``` from torch.jit.mobile import ( _backport_for_mobile, _get_model_bytecode_version, ) MODEL_INPUT_FILE = "model_v7.ptl" MODEL_OUTPUT_FILE = "model_v5.ptl" print("model version",...
The torch.jit.mobile has a [_backport_for_mobile](https://cs.github.com/pytorch/pytorch/blob/730fef25c71dfb7c7d3f403df48541cc0aac154d/torch/jit/mobile/__init__.py#L139) function to "backport" a model to a given version ``` from torch.jit.mobile import ( _backport_for_mobile, _get_model_bytecode_version, ) MODEL_INPUT_FILE = "model_v7.ptl" MODEL_OUTPUT_FILE = "model_v5.ptl" print("model version",...
@FraPochetti and @boobo94 there is PlayTorch, which can run PyTorch Mobile models in React Native https://playtorch.dev/
@mrousavy could be interesting, yes. It would require video support, which PyTorch Live currently doesn't have, but something we'd like to add in the future :)
Hi @zhiqwang, @JohnZcp reached out and asked if I could provide a repo for the crash when loading the `yolo5s_scriptmodule.ptl` with PyTorch Mobile 1.10.0. I created a repro example based...
@jeffxtang it depends. Generally, if it is possible in native Android and iOS, then it is theoretically possible in React Native. I did a quick check on the PyTorch Android/iOS...
@henryleemr PlayTorch doesn't support audio streaming. Do you have an end-to-end example for either iOS or Android w/o React Native? I might be open looking into this for PlayTorch, which...
Hi, Is the issue solved? Cheers