Kevin Scott
Kevin Scott
I'm converting the MAXIM models into Tensorflow.js models for use in Javascript. When using fixed sizes, the model converts fine. However, using dynamic sizes (polymorphism) fails. For a discussion of...
We currently bundle the library in CJS for Node. It'd be good to support ESM as well, to enable `import`s of the upscaler without needing `require()`. Context: https://github.com/thekevinscott/UpscalerJS/issues/554#issuecomment-1344108954
[The MAXIM documentation has three bugs](https://github.com/thekevinscott/UpscalerJS/discussions/1287#discussioncomment-8800202) (I assume all MAXIM exhibit models have these since we generate the docs from a template): - The UMD links listed are incorrect -...
I'm trying to run the getting started code. I'm using Vite. I see `caches is not defined`. Browser: `Version 120.0.6099.216 (Official Build) (arm64)` I'm on an M3 Max. Code: ```...
Hi, me again. It looks like the dunder `__copy__` methods are not carried over to Javascript: * [`lalr_interactive_parser.py:61`](https://github.com/lark-parser/lark/blob/master/lark/parsers/lalr_interactive_parser.py#L61) * [`lalr_parser_state.py:56`](https://github.com/lark-parser/lark/blob/master/lark/parsers/lalr_parser_state.py#L56) Presumably, other dunder methods like `__eq__` are not available, though...
Fixes https://github.com/lark-parser/Lark.js/issues/43
The javascript definition of [`isupper` is defined here](https://github.com/lark-parser/Lark.js/blob/master/larkjs/lark.js#L309): ``` function isupper(a) { return /^[A-Z_$]*$/.test(a); } ``` This is slightly different from the Python implementation, with respect to digits: ```py '__IGNORE_0'.isupper()...
- [Fixes bug with `InteractiveParser.accepts()`](https://github.com/lark-parser/Lark.js/issues/39) - Adds `node_modules` to `.gitignore` (node modules should not be added to the repo)
I believe there is a bug with the `accepts()` method when using `interactive`. [I set up a repo here](https://github.com/thekevinscott/demo-of-larkjs-interactive) demonstrating the issue. This is the error: I believe what is...
I cloned and am trying to run through the [example here](https://github.com/ggerganov/ggml/tree/master?tab=readme-ov-file#gpt-inference-example). At this step: ``` ../examples/gpt-2/download-ggml-model.sh 117M ``` I see the following: ``` Downloading ggml model 117M ... dyld[26862]: Library...