Kevin Scott
                                            Kevin Scott
                                        
                                    This is a tricky problem, and I'd welcome support from the open source community if anyone would like to contribute. ---- Here's some background. Tensorflow.js comes as three different packages:...
@Juraj-Masiar you'll need to install `@tensorflow/tfjs-node` from `npm` alongside `upscaler`. [Check out this example](https://upscalerjs.com/documentation/guides/node/nodejs) which also has a runnable code example. To the broader question of ESM support: yes, I'd...
I'd be happy to look into this - will report back soon.
I spent some time looking into this. The challenge with this model (and frankly, most modern models) is that it's built on top of PyTorch, and UpscalerJS sits on top...
To a specific comment from your post: > the only scenario where you have some problems is with the transparent PNGs because the clipping does not persist and a black...
Thanks for letting me know about the broken link - that should be fixed now. [Can you try this link and let me know if that's any different? What browser...
> just check your browser version https://caniuse.com/mdn-api_caches I’m on chrome 120 which appears to be supported.
Just ran into this error (I think it's the same error?). Did a `pip install lark-js --upgrade` and [tried to run through the example](https://github.com/lark-parser/Lark.js/tree/master/examples) - got: ``` throw new ConfigurationError(format("Unknown...
An unsolicited comment: I'm a big fan of JS-based test suites like [vitest](http://vitest.dev), or [jest](http://jestjs.io). They provide built-in assertion libraries (instead of having to write your own), automatic test discovery...
Just to provide a solution, rewriting the `accepts()` method to be: ``` accepts() { let new_cursor; let accepts = new Set(); const choices = this.choices(); for (const key in choices)...