Tommy D. Rossi
Tommy D. Rossi
I would prefer waiting for `resolve` to add esm support That library is downloaded 58 million times every month, sooner or later they will need to add esm support
The problem is in the polyfill library, unfortunately the library won’t accept PRs and I don’t want to maintain a fork, maybe I should try again searching for an alternative...
You can also give a try to https://github.com/niksy/node-stdlib-browser
Ok, i will close this for now
I wrote this, i will test on my project and open a pull request if it behaves ok ```js function cloneElement(element, props = {}, children = []): JsxElement { const...
This plugin only polyfills node native modules, not globals
You can think matrix moltiplication working on the last 2 dimensions and using the first dimension only for batching You basically can ignore the first dimension, pytorch does the matrix...
I think the same reasoning also applies when using images, Tensors usually have shape [Batch, Channels, Height, Width] (NCHW), you can consider the image colors as group of different images,...
It’s using the usual broadcasting rules, if you mean if it follows the matrix multiplication rule of having 1 dimension in common then yes, the dimension in common must the...
Currently Supabase takes about 300ms to be required in a AWS lambda function Being able to only require the part of Supabase could significantly decrease cold starts for many projects:...