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?
Qwen3.8-Max: A New Bar for Coding and Cowork
451–460 of 653 posts
Re: Qwen3.8-Max: A New Bar for Coding and Cowork
#452Re: Qwen3.8-Max: A New Bar for Coding and Cowork
#453Earlier 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.
Re: Qwen3.8-Max: A New Bar for Coding and Cowork
#454This 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.
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
#455Earlier 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.
Re: Qwen3.8-Max: A New Bar for Coding and Cowork
#456Earlier 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…
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
#457They'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.
Re: Qwen3.8-Max: A New Bar for Coding and Cowork
#458Earlier 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…
Download LM studio, search models, click download, wait minutes, prompt and have fun
Re: Qwen3.8-Max: A New Bar for Coding and Cowork
#459Earlier 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?
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
#460They'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.