Live data from Hacker News

Qwen3.8-Max: A New Bar for Coding and Cowork

qwen.ai

451–460 of 653 posts

Re: Qwen3.8-Max: A New Bar for Coding and Cowork

#451
post #322
post #264

Earlier quoted context omitted.

That's not how LLMs work. If you're talking about number of parameters, you wouldn't be able to reduce the size much by "removing" support for other languages.

Can you please explain why?

For a set parameter size, if you benchmark an LLM on a single language, you'd get better results by training it on multiple languages rather than just the one. Scaling quality training data almost always increases performance as the neural network picks up general rules and an understanding of code that are language agnostic.

Re: Qwen3.8-Max: A New Bar for Coding and Cowork

#453

Earlier quoted context omitted.

Surely the moat is the training data... with the data you can explore new architectures much easier and get step changes in performance.

The training data, at least up to now, is very abundant and basically every lab has the same data from scraping the Internet. RLHF data is what's now valuable.

Arguably the majority of codebases are not available on the public internet

Re: Qwen3.8-Max: A New Bar for Coding and Cowork

#454
post #305

This makes me wonder if AI companies even have a MOAT in the first place. All requests to an LLM are idempotent, for every API call you need to send it the entire conversation history so that it can process it. LLMs do not learn or remember anything, which makes it super easy for users to switch LLMs on the fly. Most popular AI frameworks, make this a one-liner change these days. And that makes me wonder if the trill…

> All requests to an LLM are idempotent, for every API call you need to send it the entire conversation history A more appropriate term is “stateless”. LLM responses are certainly not idempotent, as they are not even deterministic.

>LLM responses are certainly not idempotent, as they are not even deterministic.

Isn't that more due to an optimization and not how the LLM itself runs?

Like a MoE LLM run on a single input should give the same output each time. But this is inefficient, as any given token is hitting 1 (or maybe 2 or 3) experts at a time, meaning all the other experts are doing absolutely nothing. So you upgrade it to take in multiple requests. But then any given expert can become a bottleneck, so when too many requests need a given expert, some of them are routed to a second or third best expert instead. Within the context of any single request, this looks like non-determinism, but it is still deterministic when considering the full batch.

For everyday users and everyday use cases, that is enough to treat it as non-deterministic (the harness might also send in unique data like current time which means one can never have the exact same request twice), but when talking about LLMs more theoretically, I think we need to consider they can still be ran deterministically even if that isn't as optimized.

Similar with temperature. 0 means deterministic, but anything higher with a seeded value is deterministic. If anything, temperature is us purposefully adding non-determinism to agents because they were too deterministic.

Re: Qwen3.8-Max: A New Bar for Coding and Cowork

#455

Earlier quoted context omitted.

A local model needs 0 investment and 0 commitment, takes literal minutes to get started (especially if you have someone who is into that stuff showing you the ropes) and if you end up disliking the experience of using AI you can just `rm -fr` it and forget the whole thing existed.

Local models on regular hardware aren't really capable of anything. Whatever you're testing is nowhere near a measly $20/mo subscription, so it's of limited use.

i really like the idea of running local models but i'm always in the position of wanting the best model(s) available and i don't have any severe privacy concerns. as such i have yet to justify ever using local models.

Re: Qwen3.8-Max: A New Bar for Coding and Cowork

#456

Earlier quoted context omitted.

Can weights be copyrightable?

Licenses are not copyright law, they are contract law. Copyright is automatic and does not require any terms, as long as the work is covered by copyright. Contract law can then override the innate copyright rights (for example to permit people to use your copyrighted works). If you create something that isn't copyright-able, you can still create a contract which people must agree to in order to use your work. The enf…

Copyright is an automatic protection (meaning you don’t need to register it, like registered trademarks), for certain types of creative works. Contracts are one way to dish out these rights (eg. for a fee).

If you have a work that is not copyrightable, and you give it to people lawfully, then you cannot protect it via copyright.

Re: Qwen3.8-Max: A New Bar for Coding and Cowork

#457

They've also announced Qwen3.8-27B being released open-weight next week. Qwen3.6-27B is widely regarded as one of the best local models, especially since nothing else comes close to it, that isn't benchmaxxed, without being significantly larger. If 3.8 truly improves upon it that would be awesome.

I've been running Qwen3.6-27B-IQ4 (4-bit quantized) locally and it's been great. I can't run the non-quantized version as I only have a 4090 w/24 GB of VRAM and it won't fit and leave any context room, but the quantized version only uses 18GB.

Re: Qwen3.8-Max: A New Bar for Coding and Cowork

#458

Earlier quoted context omitted.

A local model needs 0 investment and 0 commitment, takes literal minutes to get started (especially if you have someone who is into that stuff showing you the ropes) and if you end up disliking the experience of using AI you can just `rm -fr` it and forget the whole thing existed.

This is the diametric opposite of the rent-vs-buy scenario that this entails. Local: You need to invest $thousands into GPU and/or very-high-end CPU+Memory hardware. Vendor: You can use any existing device, even a phone or tablet. A very low-end laptop is fine. > takes literal minutes to get started Local: Typical scenario is hours just to download the software, the model weights, and then faffing around with CUDA an…

> Local: Typical scenario is hours just to download the software, the model weights, and then faffing around with CUDA and matching your GPU drivers.

Download LM studio, search models, click download, wait minutes, prompt and have fun

Re: Qwen3.8-Max: A New Bar for Coding and Cowork

#459

Earlier quoted context omitted.

I’ve run 3.6-27B and 3.6-35B on 32GB locally for a lot of bulk non-code tasks. Let it run overnight and wake up to millions of output tokens worth of results without data having left my house, all for the price of electricity. I haven’t found it very useful for code. It can do some code, but I’ve tried a dozen different quants and context lengths and the output is always bad enough that it has to be discarded for any…

> I’ve run 3.6-27B and 3.6-35B on 32GB locally for a lot of bulk non-code tasks. Do you mind sharing your use cases?

Not OP, but I use it for a ton of smaller things. I have it hooked into Hermes and have been using it to help bulk rename my media folders so they all follow a common format, add titles that sort of thing which wouldn't be easy to 'script'. Another thing I use it for is comparing data sets, looking at my exported Spotify artists and compare to what I have locally, and letting me know where there are missing artists, or albums, and recommendations based on similar artists that I may not have locally.

Sure a lot of this could be done without AI, but it's certainly quicker and easier, and since my AI box is on solar, it's just the power of the sun to keep it going.

Re: Qwen3.8-Max: A New Bar for Coding and Cowork

#460

They've also announced Qwen3.8-27B being released open-weight next week. Qwen3.6-27B is widely regarded as one of the best local models, especially since nothing else comes close to it, that isn't benchmaxxed, without being significantly larger. If 3.8 truly improves upon it that would be awesome.

Qwen3.6-35B is my daily driver for AI, and what convinced me to cancel my Claude subscription back in April. The Qwen3.6 line is easily the best local model I've tried, and I've tried a lot. I've got it diligently grinding away on my laptop right now, reviewing and fixing some bugs in my F# code.

What do you use to pair it with web search?
Post reply on HN