HackerTrans
トップ新着トレンドコメント過去質問紹介求人

djsjajah

84 カルマ登録 3 年前

コメント

djsjajah
·7 日前·議論
I think they were making a joke. In the future, you might consider the advice you are giving as well as giving it.
djsjajah
·12 日前·議論
Yes. Wait a day
djsjajah
·21 日前·議論
Not with 800 examples. If you are going to consider an ngram model, I think you are better off getting a frontier llm to write you an absurd regex.
djsjajah
·25 日前·議論
Except, that won’t help. By the time a new fab is up and running, we will probably have a massive surplus.
djsjajah
·29 日前·議論
You need to think this thought through all the way to the end. What it has said also influences what it will say. If it has consistently made combative responses, then the most likely thing to do is to continue to be combative.

I don't think there is any way back after the conversation takes a turn like that so there is no point in arguing with it. The only thing you can do is to fork the conversation before it made the first mistake and give it more context or tell it to look things up.
djsjajah
·先月·議論
It’s amusing that a lot of the agents have worked out that sampling doesn’t change ppl.
djsjajah
·先月·議論
I think what they mean by “now” is the stuff announced today.
djsjajah
·3 か月前·議論
I don't follow. Can you explain how your comment is relevant to mine? It might help if you also explain how you interpreted my comment.
djsjajah
·3 か月前·議論
You just failed the Turing test.
djsjajah
·3 か月前·議論
I have 2 of them. I would advise against if you want to run things like vllm. I have had the cards for months and I still have not been able to create a uv env with trl and vllm. For vllm, it’s works fine in docker for some models. With one gpu, gpt-oss 20b decoding at a cumulative 600-800tps with 32 concurrent requests depending on context length but I was getting trash performance out of qwen3.5 and Gemma4

If I were to do it again, I’d probably just get a dgx spark. I don’t think it’s been worth the hassle.
djsjajah
·3 か月前·議論
> or by the community

Hmmm
djsjajah
·4 か月前·議論
yes, but the difference between one model and one 4x larger is usually a lot more than that.

It is not a question of do a run Qwen 8b at bf16 or a quantized version. It more of a question of do I run Qwen 8b at full precision or do I run a quantized version of Qwen 27b.

You will find that you are usually better off with the larger model.
djsjajah
·4 か月前·議論
trl. give me a uv command to get that working.

But even in the amd stack things (like ck and aiter) consumer cards are not even second class citizens. They are a distance third at best. If you just want to run vllm with the latest model, if you can get it running at all there are going to be paper cuts all along the way and even then the performance won't be close to what you could be getting out of the hardware.
djsjajah
·4 か月前·議論
No. It seems to me that the comment is objectively incorrect. The original comment was talking about inference and from what I can tell, it is strictly going to run slower than the model trained to the same loss without this approach (it has "minimal overhead"). The main point is that you wont need to train that model for as long.
djsjajah
·5 か月前·議論
That’s kind of a moot point. Even if none of those overheads existed you would still be getting a a fractions of the mfu. Models are fundamental limited by memory bandwidth even with best case scenarios of sft or prefill.

And what are you doing that I/O is a bottleneck?
djsjajah
·6 か月前·議論
> including all previous experiments

How far back do you go? What about experiments into architecture features that didn’t make the cut? What about pre-transformer attention?

But more generally, why are you so sure that they team that built Gemini didn’t exclusively use TPUs while they were developing it?

I think that one of the reasons that Gemini caught up so quickly is because they have so much compute at fraction of the price of everyone else.
djsjajah
·6 か月前·議論
Not only can it be streamed, but lz4 will probably make things quicker.
djsjajah
·6 か月前·議論
You just ruined my day. The post makes it sound like gel is now dead. The post by Vercel does not give me much hope either [1]. Last commit on the gel repo was two weeks ago.

[1] https://vercel.com/blog/investing-in-the-python-ecosystem
djsjajah
·7 か月前·議論
> Do you really though?

Yes.

It stays in on the hbm but it need to get shuffled to the place where it can actually do the computation. It’s a lot like a normal cpu. The cpu can’t do anything with data in the system memory, it has to be loaded into a cpu register. For every token that is generated, a dense llm has to read every parameter in the model.
djsjajah
·7 か月前·議論
GPUs might not be bandwidth starved most of the time, but they absolutely are when generating text from an llm. It’s the whole reason why low precision floating point numbers are being pushed by nvidia.