Alex Quach

200 posts

Alex Quach

Alex Quach

@theAlexQuach

ML @reductoai (prev @mit @liquidai). Here to understand network effects

San Francisco, CA Katılım Haziran 2017
123 Takip Edilen114 Takipçiler
Raunak
Raunak@raunakdoesdev·
you know your intern is cooking when he has 16TB of model weights and data on the training cluster
English
5
1
24
2.1K
Karan Brar
Karan Brar@deepmatmul·
Every AI company should own its data, its models, and the research lab that keeps making them better. Today, @thomasboser and I are launching @hiloopai to make that possible. The frontier advantage isn’t access to a model. It’s the research organization continuously improving it. Your product already generates the raw material for better intelligence: proprietary data, production feedback, evaluations, and domain expertise. Very few teams have the research capacity to turn those assets into better models. Hiloop builds and operates that capability with you. Bring us the model your product depends on, the data that makes it different, and an evaluation that defines success. We reproduce your baseline and run an autonomous research campaign against it. Agents pursue competing hypotheses in parallel, build on previous results, and promote only improvements that survive verification. Our researchers validate the winners and bring them into production. The work can run hosted or inside your environment. You retain control of your data, and the resulting models, evaluations, and research artifacts are yours. We’re starting with model training, post-training, and inference optimization, where progress is measurable and the value is immediate. But this isn’t a one-off model improvement. It’s a persistent research capability that begins each campaign with everything learned from the last. Over time, the lab accumulates research memory and improves its own tools, evaluations, and agents. The process used to create better intelligence gets better itself. That’s infrastructure for recursive self-improvement. If your product depends on a model and an important metric has stopped moving, bring us the model you can’t make better. We're much better at research than making videos! Reach out to us: founders@hiloop.ai
English
35
32
207
144.5K
Alex Quach
Alex Quach@theAlexQuach·
@TransluceAI @mengk20 interesting oversight framework! I hope the community can build on these ideas and I’m excited to see initial versions of these models
English
0
1
1
194
Transluce
Transluce@TransluceAI·
How could we train an AI model that was very good at overseeing another model: catching reward hacking and sandbagging, predicting unwanted behaviors or fine-tuning effects, etc.? We propose a new approach for doing this at scale: oversight foundation models.
Transluce tweet media
English
9
39
348
30.3K
Alex Quach
Alex Quach@theAlexQuach·
@_vatsadev it was actually quite interesting what they put metrics and clear numerical goals on
English
1
0
2
24
Vatsa Pandey
Vatsa Pandey@_vatsadev·
@theAlexQuach this is literally project manager text alex, not 1 single metric in the wordcloud, where are the evals of society
English
1
0
2
69
Vatsa Pandey
Vatsa Pandey@_vatsadev·
@theAlexQuach lowkey I'd bet it would be interesting to crack open the earliest chinese and indian 5-year plans and track them doc by doc (make schemas for them I need data)
English
1
0
3
90
Alex Quach
Alex Quach@theAlexQuach·
I’m reading the 15th Five-Year Plan (2026-2030) for National Economic and Social Development of the People’s Republic of China during my flight to beijing Drop me other recs
English
1
1
8
1K
Alex Quach
Alex Quach@theAlexQuach·
5.6 sol is too agentic it keeps sending slack messages to my colleagues
English
2
1
5
136
Alex Quach
Alex Quach@theAlexQuach·
wow didn't know codex pets had functional utility, but would recommend now
English
1
1
5
143
Adam Bucholz
Adam Bucholz@Bucholz_Adam·
Miejsca półfinalistów Mundialu w rankingu FIFA: 1994 🇧🇷3, 🇮🇹4, 🇸🇪10, 🇧🇬29 1998 🇧🇷1, 🇫🇷18, 🇭🇷19, 🇳🇱25 2002 🇧🇷2, 🇩🇪11, 🇹🇷22, 🇰🇷40 2006 🇵🇹7, 🇫🇷8, 🇮🇹13, 🇩🇪19 2010 🇪🇸2, 🇳🇱4, 🇩🇪6, 🇺🇾16 2014 🇩🇪2, 🇧🇷3, 🇦🇷5, 🇳🇱15 2018 🇧🇪3, 🇫🇷7, 🏴󠁧󠁢󠁥󠁮󠁧󠁿12, 🇭🇷20 2022 🇦🇷3, 🇫🇷4, 🇭🇷12, 🇲🇦22 2026 🇦🇷1, 🇪🇸2, 🇫🇷3, 🏴󠁧󠁢󠁥󠁮󠁧󠁿4
Polski
295
1.6K
42.2K
3.7M
Alex Quach
Alex Quach@theAlexQuach·
there’s so much room to go
Big Boss@0xBADB01E

First you have to understand that modern LLM inference already disaggregates weights as models outgrew single chips years ago. You shard either by layer (pipeline parallelism) or by slicing every layer (tensor parallelism), and the two do very different things. As an example, let’s look at Llama 3.3. It has 70B of weights and at FP8 that’s 70 GB of memory which is enough to fit on a single H100. Now that H100 has 3.35 TB/s of HBM, so the fastest it can ever decode for one user is 70/3.35 ≈ 21 ms/token or ~48 tok/s while using under 1% of its FLOPs. Now if we pipeline it across 8 chips: each chip holds ~8.75 GB, which means it only needs 1/8th the bandwidth and 1/8th the FLOPs to sustain the same aggregate throughput. Now crucially the token/sec a user gets is limited by the amount of data that crosses the link. In current LLMs all that is a small amount of activations for LLama 3.3 it’s ~8 KB per token…. Yes, you read that right it’s 8 KILOBYTES we are sending over a <900 GB/s link. That’s only 9 ns of serialization time but the overhead of 224G PAM4 SerDes adds ~100 ns per link traversal with RS-FEC which is 11x longer than the payload itself. And then you have the NVSwitch adding ~300 ns per hop and you need to pay twice. That’s ~600 ns of just hardware latency wrapped around 9 ns of data making a 98% tax before software even shows up. Then NCCL’s collective stack turns 600 ns into 10-20+ us… all to move 8 kilobytes lol. For comparison 8 KB serializes over 10 Gigabit Ethernet NRZ, in just 6.6 us. Pipeline parallelism however doesn’t make a single user faster as the token still needs to visit every layer in the sequence, so per-user speed is still weights / per-chip bandwidth. To get more speed per user token you need to use tensor parallelism and have all the chips work on the same layer simultaneously. TP costs you 2 all reduce OPs per layer, 160 per token on llama 3, that’s still kilobytes of traffic but with NVLink overhead it’s a massive tax and why pipeline parallelism on most models still gives more interactivity per user. However, this gives you a huge latency lever to pull that scales tokens per second with interconnect speed instead of memory BW. The clever amongst you might have also realized that sharding doesn’t just cut memory bandwidth per chip it also cuts FLOPs per chip and is why we have such bad MFU on decode. So once you’ve sized the link for the memory, you need to size the compute for it too. This is called “balancing the pipeline”, and currently no shipping chip does it because they were all designed as standalone monsters. Remember Tokens/sec = ~aggregate memory BW / bytes touched per token. At batch 64 in FP4 you need ~250 FLOPs per byte, and Blackwell ships 1,250. Provisioned 5x more than the narrow pipe of HBM. Nobody saturates shit cause they are all building around HBM. So now it all comes full circle. Parallelism reduces memory bw pressure and thus FLOPs but increases interconnect latency pressure. Despite having HBM and GigaSERDES we aren’t actually doing more work lol. But if you really wanted to balance the pipeline you need to match the memory bandwidth, the flops, and most importantly the interconnect. So what does that look like ? Well if you build around LPDDR’s lower bandwidth, lower your interconnect latency, you actually can beat Nvidia on decode with a fraction of the silicon.

English
0
1
4
371