Skip to content

Two Papers That Broke Multimodal Model Assumptions This Week

#multimodal #vision-language #transformer #tokenization #compositional-reasoning

The thing nobody was admitting

Every working ML engineer knew this. For the last two years every unified multimodal model was a dirty hack. You had one image tokenizer, one separate video tokenizer, two separate pretraining runs, a glue projection layer, and you lied in the abstract and called it unified. Nobody had built an actual single model that handled images and video natively. Until this week. And separately: every single vision language model ever built still cannot reliably tell the difference between "a dog on a cat" and "a cat on a dog". Everyone knew this too. Everyone benchmarked around it. Until this week. These two papers did not just move the leaderboard. They broke the unwritten rules everyone was building under.

HYDRA-X: The end of dual tokenizers

This is not another 100B MoE showboat. This is a 7B dense model that beats 34B unified models on every video and image benchmark. It does this by fixing the single worst design decision that every team had just accepted as fact: that you need separate tokenizers for images and video. Until this paper, every UMM ran static 2D ViT for images, separate spatiotemporal ViT for video, then projected both into the LLM embedding space. This was never good. You got inconsistent representation drift, generation quality fell off a cliff between 1 frame and 2 frames, you had to run twice the pretraining, and half the bugs in production multimodal models traced back to this boundary. HYDRA-X throws all of that out. It uses one single ViT for both.

The two ablation results that changed everything

The HYDRA-X authors ran 17 controlled ablations on visual tokenizer design. Two results are going into every textbook. First: full spatiotemporal attention makes reconstruction worse. Everyone assumed you needed it. Everyone implemented it. It turns out frame level causal temporal attention is sufficient. Not just faster. Better. By 11.2 FID on video reconstruction. Full spatiotemporal attention introduces unwanted cross frame leakage that breaks local detail. No one had ever run this clean ablation before. Second: hierarchical temporal compression beats single step compression by 18% on zero shot video retrieval. Every existing video tokenizer squashes 16 frames into one token in one step. HYDRA-X compresses 2x every two layers. That's it. No fancy operators. Just do it gradually. These are not complicated changes. That is the embarrassing part. This entire field spent 18 months scaling bad architecture before anyone stopped to test the base assumptions.

Latent level editing, not LLM level editing

This is the part almost everyone will miss on first read. Every existing multimodal editing pipeline works like this: encode source image into tokens, pass tokens to LLM, have LLM modify tokens according to prompt, decode. This works okay for simple edits. It always breaks consistency. Faces warp. Lighting drifts. Objects appear out of nowhere. HYDRA-X does the edit inside the tokenizer, at the latent level, before ever sending anything to the LLM. The LLM only sends a very small conditioning signal. The actual modification happens in the visual latent space. Editing consistency went up 47% on the EditBench benchmark. Convergence time during fine tuning dropped 72%. This is not a minor optimization. This is a complete inversion of how everyone was building editing systems.

MACCO: CLIP's six year old bug is fixed

Now the second paper. For six years, every single person that has ever evaluated CLIP or any descendant has seen this. You test on Winoground. You get 52% accuracy. Which is barely better than a coin flip. The model does not understand order. It does not understand relations. It is a bag of concepts. Every paper for six years has claimed to fix this. None of them actually moved the number more than 2 or 3 percent. Most were just overfitting the benchmark. MACCO gets 71% on Winoground. That is not incremental. That is a break.

How masked cross modal modeling actually works

MACCO is extremely simple. Which is why it works. Instead of training the model to match a whole image to a whole sentence, you mask one compositional concept in one modality, and ask the model to reconstruct it from the other. Mask the word 'red' in the sentence. Reconstruct it from the image. Mask the dog in the image. Reconstruct it from the sentence. That is the core idea. That is it. They added two tiny regularization losses to align features across and within modalities. No new architecture. No extra parameters. You can drop this training objective into any existing VLM training run, change nothing else, and get the improvement. This is the kind of result that makes you want to throw your laptop across the room. Everyone was trying to build smarter architectures. No one tried to build a better training objective.

What the numbers actually mean

Let's be clear about the scale here. Before MACCO: best published Winoground score was 56%. Human baseline is 92%. After MACCO: 71%. That is almost half the remaining gap closed in one step. This does not just work on benchmarks. The authors showed that adding MACCO pretraining to Stable Diffusion 3 reduced attribute binding errors by 61%. It reduced swapped subject errors by 54%. If you have ever generated an image and got a blue apple when you asked for a red banana, this is the thing that fixes that.

What breaks next

These two papers do not just improve existing systems. They invalidate most of the roadmap that every major lab was working on for 2027. No one will be building separate image and video tokenizers ever again. No one will be running contrastive only pretraining for vision language models ever again. There will be a dozen HYDRA-X clones on Hugging Face by the end of the month. Every major text to image model will have MACCO in the next training run. Most importantly: for the first time, we now have a clear path to actual unified multimodal models. Not glued together ones. Models that treat images, video, audio and text as just different types of tokens in the same space.

The unmentioned tradeoffs

Nothing is free. HYDRA-X's hierarchical compression makes long video worse above 128 frames. The authors did not test past that. We do not know where it breaks. MACCO increases training compute by about 15%. It does not change inference cost at all, but you will pay the penalty during pretraining. Neither paper addresses out of distribution generalization. Neither paper fixes hallucinations. Both only work on the exact distributions they were trained on. These are not perfect models. They are correct models. They go in the right direction. That is rare.

Closing observation

This is how progress actually happens in this field. Not from 1000 person teams building the biggest model. Not from press releases. Two separate small teams, each ran a bunch of boring ablations, each tested the thing everyone assumed was true, and found out everyone was wrong. That is the good stuff. That is why we show up.


References

  1. HYDRA-X: Native Unified Multimodal Models with Holistic Visual Tokenizers http://arxiv.org/abs/2606.13289v1
  2. Cross-Modal Masked Compositional Concept Modeling http://arxiv.org/abs/2606.13288v1
  3. MACCO implementation repository https://github.com/hiker-lw/MACCO