Joshua Turner
Joshua Turner
The accessibility of the template is quite good, barring this one issue. I would encourage you to try an actual screen-reader rather than an accessibility testing tool in order to...
My current use case has about 80k examples, with about 1000 dense features each. (Short phrases that have been run through BERT or another embedding, plus a few fistfuls of...
Take a peek at issue #568. The generate() method is not a Python generator. Your code is iterating over the characters in the emitted string, not the emitted tokens. I...
A little demo: ``` from gpt4all import GPT4All import sys model = GPT4All('ggml-mpt-7b-chat') message = sys.sysv[1] messages = [] print( "Prompt: " + message ) messages.append({"role": "user", "content": message}); full_prompt...
The format proposed by @MikeNwin makes sense to me as a a way of classifying at-a-glance. A way to flag which criteria are mandatory would be nice, too. The importance...
Adding my voice to the desire for better observability, but for a decidedly more mundane reason: I need to be able to graph convergence for my human users that want...
@Craigacp - Intermediate checkpoints would be complementary (but not core to my specific use case), and having control over which conditions would trigger such a save would be a big...
I've had to dive deep on this; there are references to absolute paths all through both the server and client-side code. I've brute-forced my immediate need, but hope to be...
It's getting weird over on HF. MS has revised the Phi-3 chat format to completely ignore the system role, and are telling consumers to rewrite their prompt structures instead. https://huggingface.co/microsoft/Phi-3-mini-4k-instruct/discussions/51
My C++ is rusty, but in stable-diffusion.cpp from here: https://github.com/leejet/stable-diffusion.cpp/blob/9c51d8787f78ef1bd0ead1e8f48b766d7ee7484d/stable-diffusion.cpp#L213 to here: https://github.com/leejet/stable-diffusion.cpp/blob/9c51d8787f78ef1bd0ead1e8f48b766d7ee7484d/stable-diffusion.cpp#L274 I see a bunch of calls to std::make_shared() This is the reference-counting stuff in the standard library,...