HackerTrans
TopNewTrendsCommentsPastAskShowJobs

deoxykev

no profile record

Submissions

Solving Automata Cam Profiling with Grasshopper

youtube.com
2 points·by deoxykev·قبل 5 أشهر·0 comments

comments

deoxykev
·قبل 8 أشهر·discuss
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 أشهر·discuss
How about LLM chat over DNS? https://github.com/accupham/llm-dns-proxy
deoxykev
·قبل 10 أشهر·discuss
And it typically works on captive portals too before payment.
deoxykev
·قبل 12 شهرًا·discuss
Meta-commentary always leans nerdier.
deoxykev
·السنة الماضية·discuss
Curious to hear what kind of work you do. Because there are definitely fields where productivity as 10x'd because of AI tools.
deoxykev
·السنة الماضية·discuss
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
·السنة الماضية·discuss
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
·السنة الماضية·discuss
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
·السنة الماضية·discuss
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
·السنة الماضية·discuss
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
·السنة الماضية·discuss
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
·السنة الماضية·discuss
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
·السنة الماضية·discuss
8x 3090 will net you around 10-12tok/s
deoxykev
·قبل سنتين·discuss
Have you hit any non-determinism errors keeping workflow state outside temporal?
deoxykev
·قبل سنتين·discuss
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?