Luke Rissacher

Results 23 comments of Luke Rissacher

Getting this too - on Windows 10. Tried empty init.vim, no luck.

Yeah, that discussion didn't seem to be getting to the (maybe) root of it so thought I'd post here. My question is, why should the prompt need ingesting at all?...

Thanks. So help me clarify - aren't the outputs of the Linear and Softmax layers (top right of the diagram) vectors of length n_vocab, so 32,000 in LLaMA's case? And...

Closing this one - on further understanding, the key & value vectors need to be calculated & cached for each token/timestep of the prompt, and each model layer, before new...

Crazy that this is not included - Django, Flask, etc. on Apache require it, and Amazon is forcing the OS migration.

Thanks Mechiel! So yes, removing the ed25519 key did the trick actually (2025a in my setup), with just the single RSA DKIM-Signature SES allowed it through: ``` Domains: ...: DKIM:...

@oneleaftea Not to fill up the chat with useless comments but - I'm not sure :).

Thanks Graham, interesting - adding `WSGIDestroyInterpreter Off` to the server config indeed resolves the delay for app restarts. So that's an acceptible fix for my purposes, as I'm not using...

Interestingly, when I tried registering an `atexit` handler on app startup, it never fired at all on restarts, whether `WSGIDestroyInterpreter` was `Off` or `On`: ```python import atexit def at_exit_handler(): with...

Interesting about all the `atexit` / daemon thread inconsistency. Glad `mod_wsgi.subscribe_shutdown()` is available if I need it. Re: application group, I set an explicit process group, but not application group,...