Hacker News

Favorites Setup
Comment by petcat | original | Hy4 preview
[−]petcat · 2026-08-29 Sat 21:27 UTC · link
> Tencent has released and open-sourced Tencent Hy4 preview, a next-generation large language model with 770B total parameters and 49B active parameters, and a context window exceeding 1M tokens.

There are no open source models, at least not useful ones (yet) [0]. Open weight is not the same as open source. The current "open weight" models are just opaque binary blobs you can run on your own computer instead of through a web API.

[0] https://allenai.org/

Imagine thinking that running a Photoshop binary on your own computer instead of through a SaaS web app means that it's "open source". Of course you think that's ridiculous.

[−]mirekrusin · 2026-08-29 Sat 22:03 UTC · link
You can open source dataset without all the details how it was assembled.

Models are lossy compressed datasets you can pick up and amend (fine tune / continue training / alter) according to license they were released under.

Hy4 is released under OSI approved Apache License 2.0.

[−]kennywinker · 2026-08-29 Sat 22:18 UTC · link
Parent poster is technically right - open “source” implies the source used to make something is open. The model source is training data and code, not just weights.

But the reality is, the weights are a useful artifact that you can use to create derivative works. So, dismissing it as a photoshop binary is as technically wrong as calling it open source.

[−]Alpha3031 · 2026-08-30 Sun 07:50 UTC · link
IIRC Nvidia claims to release enough data that it should be possible to fully reproduce Nemotron, so even if it's not as good as the current best models, GPT 5.1 or Opus 4.1.was still useful right? I guess it depends on what you wanted to do with them.
[−]LtWorf · 2026-08-29 Sat 22:58 UTC · link
So windows is open source because the binaries are a lossy compression of the original source?
[−]NitpickLawyer · 2026-08-30 Sun 04:42 UTC · link
Weights are not binary. A model is created at init time, with random values. After that, it is being modified using data. The key point is that the labs modify the models "as weights". That means that weights are the intended / preferred way of modifying a model. Which, coincidentally, matches the definition of source in Apache 2.0. There is no "higher level" place where editing takes place. It all happens in weight space. Through the license you get the same rights as the lab that created it: view, inspect, run, modify, re-release. That's it. That's the only thing a license can grant you.

The rest is semantics, misunderstandings, and FUD. A model released under an open source license is open source. Training data is lab knowhow / IP. Which, historically, has never been required for any open source release.

[−]frabcus · 2026-08-30 Sun 06:32 UTC · link
Well, you can't add or alter data in pre-training from just the weights. Which, as I understand it, means you can't fundamentally increase core knowledge or cognitive ability, only what the model likes to do with those. You can only post-train, and you're subject as a result to catastrophic forgetting.

To explain simply as far as I can tell (would love to be corrected) the large number of pre-training tokens only works because the documents are randomly ordered.

So if you e.g. took a foundation model with open weights, then tried post-training it all the new data since its cut-off period, it would then end up over-trained on that new data, and forget older things.

[−]mirekrusin · 2026-08-30 Sun 07:26 UTC · link
As I live next to EPFL, I'll give you example from them: their Meditron-70B model is adapted to the medical domain from Llama-2-70B through continued pretraining. They took weights of Llama-2-70B and continued training on PubMed, medical guidelines and general data.

Weights aren't just executable artifact that's consumed by users. Third parties actually use released parameter state as the editable starting point for further training and produce new foundation models from it.

[−]petu · 2026-08-30 Sun 09:39 UTC · link
Before we worry about source code, Microsoft doesn't grant me rights to modify/redistribute/sell copy of Windows I have.
[−]mirekrusin · 2026-08-30 Sun 11:59 UTC · link
You can't take windows binaries and continue development on them.

Model weight release is a snapshot/checkpoint you can take and resume training on new data, producing new model.

You don't need original training history to modify it further.

[−]villish · 2026-08-29 Sat 23:14 UTC · link
Countries that aren’t competitive need access to training datasets so that they may train their own similarly capable models and be sure of the inputs. Governments cannot blindly trust open weight models from China and the US.