astnmsn
astnmsn
We are running into a similar issue in our React app. We are not using Datastore. Dependencies: ```json { ... "dependencies": { "@aws-amplify/ui": "5.9.0", "@aws-amplify/ui-react": "5.3.3", ... "aws-amplify": "5.3.15", ......
From the bit of digging I have done with this example, it appears that the behavior is a result of [this bit of code in Item.js](https://github.com/yjs/yjs/blob/ea7ad07f34cc64cbd5d30e3fe00fa2c5476dec9f/src/structs/Item.js#L214-L218): ```javascript if (left &&...
@pierscowburn I think for now the test Kevin posted with the additional `sync()` placed after step 4 should pass if you set `ignoreRemoteMapChanges` to true when instantiating the UndoManager. Although...
Running into a similar issue with the `Equal` and `Not` operations after running the model through onnxsim. Looks like it is unsupported by `nnx`. Any pointers on where to get...
This is the model [download link](https://dl.fbaipublicfiles.com/segment_anything/sam_vit_b_01ec64.pth) provided by the SAM repo - I have also added to the original post
@laggui Thanks for asking, and yes that is expected. We plan to run the first half of the model to generate the embeddings on the backend using pytorch. Only the...