Lukas Vanagas
Lukas Vanagas
I see your project has `/context.tsx` and `/src/context.tsx`. Pick either `src` approach or one without and see if that helps.
Ahh, that sucks. But at least it really doesn't harm anything having that entry in the manifest :)
Bumped into the same thing. I guess there is variety implementations and interpretations for stop sequences. I had to do the same in Python code when manually implementing stop words...
Is it me or the link of CoreML models is missing on Hugging Face? Btw, @ggerganov, if you need help converting the models, I'd be glad to contribute. It seems...
In that regard I'd like to ask for help since I cant seem to succeed with it.. `python3.10 ./models/convert-whisper-to-coreml.py --model tiny` ```bash 100%|█████████████████████████████████████| 72.1M/72.1M [00:05
Thank you G. To clarify for others, I also ran into the `xcrun: error: unable to find utility "coremlc", not a developer tool or in PATH` problem. I didn't know...
@flyisland as I've mentioned in my reply, yes, you need to install Xcode. https://apps.apple.com/us/app/xcode/id497799835
Due to the recent Reddit API changes, I'd also highly vote to have the discussion here. When it's closer to the code, it's far more helpful. Especially with the idea...
I'm experimenting in the browser and edge function and experience the same error. Using random not too complex object: ```ts import { encode, toObject } from 'flatbuffers/js/flexbuffers'; toObject(encode(randomObject).buffer); ``` I...
I figured I had some long floats and long integers such as Unix timestamp. Max 12 digits. This helper function to stringify numbers solved the issue. ```ts // Stringify all...