HackerTrans
トップ新着トレンドコメント過去質問紹介求人

deoxykev

no profile record

投稿

Solving Automata Cam Profiling with Grasshopper

youtube.com
2 ポイント·投稿者 deoxykev·5 か月前·0 コメント

コメント

deoxykev
·8 か月前·議論
I live there in that city. There are hardly any homeless at all here. Not like other cities at least. I could see it being a major problem in other places.
deoxykev
·10 か月前·議論
How about LLM chat over DNS? https://github.com/accupham/llm-dns-proxy
deoxykev
·10 か月前·議論
And it typically works on captive portals too before payment.
deoxykev
·12 か月前·議論
Meta-commentary always leans nerdier.
deoxykev
·昨年·議論
Curious to hear what kind of work you do. Because there are definitely fields where productivity as 10x'd because of AI tools.
deoxykev
·昨年·議論
HTMX and shoelace is an awesome combo. Super fast to prototype things and tweak as needed. Being able to copy paste snippets and directly inject data in a straightforward way is a nice way of working. It limits cognitive overhead so you can focus on the domain logic rather than fight javascript dependencies.
deoxykev
·昨年·議論
Don't forget to finetune the reranker too if you end up doing the embedding model. That tends to have outsized effects on performance for out of distribution content.
deoxykev
·昨年·議論
Interesting, I had never heard about min-p until now. From what I understand, it's like a low-pass filter for the token sampling pool which boosts semantic coherence. Like removing static from the radio.

Do you have any benchmarks of min-p sampling with the new reasoning models, such as QwQ and R1?
deoxykev
·昨年·議論
Yeah, there is a clear bottleneck somewhere in llama.cpp. Even high end hardware is struggling to get good numbers. The theoretical limit should be higher, but it's not yet.

Benchmarks: https://github.com/ggerganov/llama.cpp/issues/11474#issuecom...
deoxykev
·昨年·議論
I don't think autoregressive models have a fundemental difference in terms of reasoning capability in latent space vs token space. Latent space enables abstract reasoning and pattern recognition, while token space acts as both the discrete interface for communication, and as a interaction medium to extend, refine and synthesize high order reasoning over latent space.

Intuively speaking, most people think of writing as a communication tool. But actually it's also a thinking tool that helps create deeper connections over discrete thoughts which can only occupy a fixed slice of our attention at any given time. Attentional capacity the primary limitation-- for humans and LLMs. So use the token space as extended working memory. Besides, even the Coconut paper got mediocre results. I don't think this is the way.
deoxykev
·昨年·議論
The fundemental challenge of using log probabilities to measure LLM certainty is the mismatch between how language models process information and how semantic meaning actually works. The current models analyze text token by token-- fragments that don't necessarily align with complete words, let alone complex concepts or ideas.

This creates a gap between the mechanical measurement of certainty and true understanding, much like mistaking the map for the territory or confusing the finger pointing at the moon with the moon itself.

I've done some work before in this space, trying to come up with different useful measures from the logprobs, such as measuring shannon entropy over a sliding window, or even bzip compression ratio as a proxy for information density. But I didn't find anything semantically useful or reliable to exploit.

The best approach I found was just multiple choice questions. "Does X entail Y? Please output [A] True or [B] False. Then measure the linprobs of the next token, which should be `[A` (90%) or `[B` (10%). Then we might make a statement like: The LLM thinks there is a 90% probability that X entails Y.
deoxykev
·昨年·議論
My take: the distills under 32B aren’t worth running. Quants seem to impact quality much more than other models. 32B and 70B unquantized are very good. 671B is SOTA.
deoxykev
·昨年·議論
8x 3090 will net you around 10-12tok/s
deoxykev
·2 年前·議論
Have you hit any non-determinism errors keeping workflow state outside temporal?
deoxykev
·2 年前·議論
Hey, I’m building agents on top of temporal as well. One of the main limitations is child workflows can not spawn other child workflows. Are you doing an activity for every prompt execution and passing those through other activities? Or something more framework-y?
deoxykev
·2 年前·議論
Imhex is a really great frontend for Capstone. https://github.com/WerWolv/ImHex
deoxykev
·2 年前·議論
Are you able to run 405B? 4Bit quant vram requirements are just shy of 192GB.