Victor Nogueira
Victor Nogueira
Not really an bug with Transformers.js, but with the conversion script. Got an error when trying to convert [lmsys/fastchat-t5-3b-v1.0](https://huggingface.co/lmsys/fastchat-t5-3b-v1.0) with `text2text-generation-with-past` task. Using task `text2text-generation` works fine, though. Am I...
Thanks for creating this theme! I'd love to be able to install it also from the [Open VSX](https://open-vsx.org/) marketplace. Would you consider publishing it there? ## Context Unfortunately, as Microsoft...
Just wanted to inform that I installed [Safari Technology Preview](https://developer.apple.com/safari/technology-preview/) to check its support for WebGPU and I noticed that the output of any model in Web-LLM appears scrambled like...
Hi @pawelgrzybek, thanks for creating this theme! I'd like to ask if you could also make it available on Open VSX marketplace. ## Context Unfortunately, as Microsoft prohibits usages of...
While working on [Auto-forward all workspace open ports when using JetBrains IDEs #11081](https://github.com/gitpod-io/gitpod/pull/11081#discussion_r935444156), we noticed that the `gp preview` command is converting any Localhost URL to their respective Remote URL...
## Description Currently, we use "Version" field from https://www.jetbrains.com/intellij-repository/snapshots to check if there has been a update in the Snapshot (Platform Version) used in the following lines: https://github.com/gitpod-io/gitpod/blob/c69e01c6f7e9837fb707a93f7a8d3be2104d1817/.github/workflows/jetbrains-update-plugin-platform-template.yml#L39 https://github.com/gitpod-io/gitpod/blob/c69e01c6f7e9837fb707a93f7a8d3be2104d1817/components/ide/jetbrains/image/gha-update-image/index.js#L154 Now...
Hi all, Thank you for the `ConversationalWidget` addition. It's [working great](https://huggingface.co/Felladrin/Minueza-32M-Chat) for my chat models. But I'd like to ask if you could add a way to set a repository...
When running the project with Vite, it's throwing this error: (It doesn't prevent Vite from running, it's just annoying) ``` VITE v5.2.11 ready in 257 ms ➜ Local: http://localhost:7860/ ➜...
- Follow-up from #415 - Fixes #414 This PR escapes the `MLC_DUMMY_PATH` variable the same way it was done with `MLC_DUMMY_REQUIRE_VAR` in #415. P.S. I edited the file directly in...
Here's the function: ```typescript function parseModelUrl(url: string) { const urlPartsRegex = /(.*)-(\d{5})-of-(\d{5})\.gguf$/; const matches = url.match(urlPartsRegex); if (!matches || matches.length !== 4) return url; const baseURL = matches[1]; const paddedShardsAmount...