HackerTrans
TopNewTrendsCommentsPastAskShowJobs

juliangoldsmith

no profile record

comments

juliangoldsmith
·قبل 10 أيام·discuss
The claim isn't so wild when it's a generalist versus a finetune trained specifically on the tasks being benchmarked.
juliangoldsmith
·قبل 12 يومًا·discuss
That benchmark ranks Kimi K2.6 and K2.7 Code near the bottom. Both are below Ornith 35B. It ranks Gemma 4 26B much higher than GLM-5.2. The results don't make much sense.
juliangoldsmith
·قبل 12 يومًا·discuss
It looks like they're comparing Orinth 9B to Qwen 3.5 35B, not Qwen 3.6. I guess it kind of makes sense since it's a finetune of 3.5, but I totally missed until I looked closely.

In my brief tests, Ornith 35B performed quite well. It won't replace DeepSeek V4 Flash for me, but if it was fast and cheap enough it might.

I don't remember being super impressed with Ornith 9B, but I could see it being on par with Qwen 3.5 35B.
juliangoldsmith
·قبل 17 يومًا·discuss
It should improve agents' action selection by allowing them to evaluate actions' effects before performing them.

An agent using only a regular LLM has no real way to predict the results of its actions. It has to just take an action based on its training data and hope it's the right one. With a world model like this, it could do a second pass before each action to catch mistakes.

I don't know if this actually delivers yet, but if it does it might help make agents more usable.
juliangoldsmith
·قبل شهرين·discuss
One can only imagine how much money Intel would have made from Optane during the ongoing RAM shortages. It would be absolutely perfect for warm KV cache, and potentially good for MoE expert offloading.
juliangoldsmith
·قبل شهرين·discuss
No true Scotsman would ever use binary blobs.
juliangoldsmith
·قبل 6 أشهر·discuss
Blocking by age rating takes out the majority of the classic Disney movies and shows. They only consider the newer CGI stuff "child-friendly".
juliangoldsmith
·قبل 6 أشهر·discuss
The silenced errors aren't guaranteed to be memory leaks or use after frees. There are some situations where memory is being handled properly, but the borrow checker isn't able to prove it.

One example might be a tree-like struct where a parent and child have references to each other. Even if everything is cleaned up properly, the borrow checker has no way to know that when the struct is created. Solving it requires unsafe at some point, usually through something like RefCell.
juliangoldsmith
·قبل 7 أشهر·discuss
It sounds like you were stuck between a rock and a hard place there. Hope the Rust integration goes well.
juliangoldsmith
·قبل 7 أشهر·discuss
>trading off for speed

If speed is a concern, why did you all stick with Synapse (essentially single-threaded due to the GIL) over moving to Dendrite? As far as I can tell, Dendrite is, for all intents and purposes, abandoned.
juliangoldsmith
·قبل 7 أشهر·discuss
It doesn't appear to be open source, so users have no control or lasting guarantees of privacy.
juliangoldsmith
·قبل 8 أشهر·discuss
As someone who as attempted to use React Native for Windows, I can tell you that the "native" XAML doesn't make things any better. If it was using web technologies I wouldn't need to manually modify RNSVG to fix segfaults when an SVG goes offscreen.
juliangoldsmith
·قبل 9 أشهر·discuss
"Hard Refresh" and "Airglow" made it onto my "On Repeat" playlist almost immediately.
juliangoldsmith
·قبل 10 أشهر·discuss
I'd use caution with the Mi50s. I bought a 16GB one on eBay a while back and it's been completely unusable.

It seems to be a Radeon VII on an Mi50 board, which should technically work. It immediately hangs the first time an OpenCL kernel is run, and doesn't come back up until I reboot. It's possible my issues are due to Mesa or driver config, but I'd strongly recommend buying one to test before going all in.

There are a lot of cheap SXM2 V100s and adapter boards out now, which should perform very well. The adapters unfortunately weren't available when I bought my hardware, or I would have scooped up several.
juliangoldsmith
·قبل 10 أشهر·discuss
I've been using Azure AI Foundry for an ongoing project, and have been extremely dissatisfied.

The first issue I ran into was with them not supporting LLaMA for tool calls. Microsoft stated in February that they were working on it [0], and they were just closing the ticket because they were tracking it internally. I'm not sure why they've been unable to do what took me two hours in over six months, but I am sure they wouldn't be upset by me using the much more expensive OpenAI models.

There are also consistent performance issues, even on small models, as mentioned elsewhere. This is with a rate on the order of one per minute. You can solve that with provisioned throughput units. The cheapest option is one of the GPT models, at a minimum of $10k/month (a bit under half the cost of just renting an A100 server). DeepSeek was a minimum of around $72k/month. I don't remember there being any other non-OpenAI models with a provisioned option.

Given that current usage without provisioning is approximately in the single dollars per month, I have some doubts as to whether we'd be getting our money's worth having to provision capacity.