HackerTrans
TopNewTrendsCommentsPastAskShowJobs

BillStrong

no profile record

comments

BillStrong
·เดือนที่แล้ว·discuss
That is a relatively simple system. It cuts out use cases.

For instance, history, newer information is mixed with older authoritative information.

The same thing for religious institutions, where the older items may be the more authoritative for the purposes.
BillStrong
·เดือนที่แล้ว·discuss
Already predicting which versions to avoid, huh.
BillStrong
·เดือนที่แล้ว·discuss
Yes, much higher computation required to encode it, and decode it, both.
BillStrong
·เดือนที่แล้ว·discuss
It is still ironic to me that my Steam Deck has decode AV1 acceleration, on a really old CPU/GPU combo.
BillStrong
·เดือนที่แล้ว·discuss
Essentially all of the processing of the video data, barring the container format which the CPU uses to know what part of the data to send to the GPU or the Audio chip or codec.

And HW acceleration is generally a preset baked in version of the encoder or decoder. These are mostly codec specific.

So, no using hardware from previous versions.

Now, you can see some software that tries to use the GPU itself, instead of the dedicated hardware acceleration, to decode, but that isn't the HW accelerated, and may not operate in real time.

At the same time, that will consume much more power, eliminating some of the advantages or the pure HW rendition, especially important for mobile.

I could see an argument being made for encoding, if it is 2x or faster than the CPU, but I haven't looked at any in a while, so don't know the speeds.
BillStrong
·2 เดือนที่ผ่านมา·discuss
Yes and no. It is just Zig, but that is the advantage. And compiling it to an special function that could work as an end seems to be a doable thing, so you would just have to have the compiler in your agent.
BillStrong
·2 เดือนที่ผ่านมา·discuss
They work better for coding workloads. Essentially, the more regular the output, the more the faster model gets right, the less the big model has to do.

Writing tends to have more false positives. I haven't tried this particular one, however, but that is the general trend.
BillStrong
·2 เดือนที่ผ่านมา·discuss
It does to an extent. One thing I will give AI, because of the nature of LLMs, you are essentially arguing with the median level of the input that trained the model. So, for someone new to the subject, you get access to patterns that will bring them up to a certain level.

Getting past that is problem we face now.
BillStrong
·2 เดือนที่ผ่านมา·discuss
As long as you don't keep calling out to the CPU, that is.

Tool calling, searches, cache movement if used, and even debug steps all stall the GPU waiting for the CPU.

There was a test of turning one of the under 1B Qwen3+ models into a kernel that didn't stall by the CPU as one GPU pass that saw quite a bit f perf lift over vLLM, I believe, showing this is an issue still.

Its been a month, so I don't remember more details than this.
BillStrong
·2 เดือนที่ผ่านมา·discuss
Even in humans, negative stimuli carries more weight than positive, in the general case.

Without reading it yet, my first thought would be to test a general ratio, something similar to human interpersonal relationship ratios like 30% negative to mostly positive, and positive are targeted, such as reinforcement not just for the good job, but reinforcement for the improvement.

And ensure the negative is targeted, such that you point out tendencies to be avoided rather than just specific instances.

Of course, most human interaction online has none of this, so, would be hard to replicate.
BillStrong
·2 เดือนที่ผ่านมา·discuss
Look on HuggingFace, there is a template that is supposed to fix the updates for the Qwen Models.

https://huggingface.co/froggeric/Qwen-Fixed-Chat-Templates

Maybe will help you?
BillStrong
·2 เดือนที่ผ่านมา·discuss
I think the article misses the actual point?

The browser is faster because they went native, in particular, GPU.

Every issue described is text rendering related. Everyone.

And I would bet most of the SwiftUI issues could be solved with a text render cache.

Something like Casey Murati's refterm toy that showed what that can do with no other optimizations, or the work for GPU accelerated terminal emulators like alacritty or ghostty.
BillStrong
·2 เดือนที่ผ่านมา·discuss
Have you thought about Zig? If you limit it to CompTime, isn't that just a scripting language that happens to be compiled to binary?