elliotsayes

Results 24 comments of elliotsayes

``` >>> vectorai.__version__ '0.2.5' ``` I have also noticed that searching on one of the images in the collection (e.g https://images.unsplash.com/photo-1543470388-80a8f5281639?w=300&q=80 ) does not return that image. In some cases...

Is there a way to select the model for the `search_image` endpoint? I want to generate the vector on the server, and ideally not bother with transferring the vector back...

If you are using hermes, you can set your `babel.config.js` to the following: ``` module.exports = { presets: [ ['module:metro-react-native-babel-preset', { unstable_transformProfile: 'hermes-stable' }], ], }; ``` And it will...

@jkoritzinsky is there any plan to fix this, what would be involved? Currently this is holding up my project.

In agreement with @BFergerson that this can be quite ugly when viewing some ontologies. The problem I have with @BFergerson 's solution however, is that it declutters by hiding information....

If you don't want to edit your node_modules, I created a patch of TypeORM with a couple of the fixes mentioned: https://github.com/typeorm/typeorm/compare/master...elliotsayes:react-native-typeorm:dev This also adds hacky support for Buffer (sqlite...

Same here, lacking this feature is a show stopper for me.. the longer the list gets the more unbalanced it can become :(

+1 For async, as it will make larger buffer storage play nicely :) In the meantime, is there any way to wrap the existing methods so they don't block the...

Related issue here. Using the exact same steps from a RN 69.5 template (`[email protected]`) on latest version on RN 70.0 yields build error when running `yarn ios`. Tail of the...

following @paulingalls instructions find: `jsi::detail::throwJSError` replace: `jsi::detail::throwOrDie` forked here: https://github.com/ArweaveNative/react-native-quick-crypto/tree/rn701 compiling on m1 @ RN 0.70.1 To use it: ``` npx react-native init RN701_patch --template react-native-template-typescript cd RN701_patch yarn add...