proomt

Search

Search posts, papers, and topics

All posts

Hugging Face Daily PapersSara Pieri, Evangelos Kazakos, Shizhe Chen1 min readpaperadvanced

PANORAMA: Panoptic Grounded Captioning via Mask Proposal Selection

Summary

PANORAMA introduces a VLM that grounds each phrase of a caption to pixel masks by selecting from a phrase‑conditioned pool of mask proposals, trained jointly with caption generation. It sets a new benchmark on the PanoCaps dataset and outperforms prior methods on several pixel‑level grounding tasks.

  • PanoCaps benchmark supplies dense panoptic captions with near‑complete pixel coverage for training and evaluation.
  • Defines a phrase‑mask matching protocol and a generalized Panoptic Quality (gPQ) metric that jointly assess text and mask alignment.
  • PANORAMA conditions a pretrained segmenter on contextualized phrase embeddings to generate candidate masks and learns to select the correct mask(s) per phrase.
  • Joint training of grounding selection with caption generation yields precise entity masks while preserving detailed, mask‑consistent captions, achieving state‑of‑the‑art grounding scores.

Engineers building vision‑language systems that require accurate spatial grounding—for robotics, image editing, or detailed scene understanding—should see this as a practical advancement.

7/10

Related reading

  1. Article: Architecting Secure and Scalable Facial Verification Systems

    A real‑world post‑mortem of a high‑volume face verification service that moved from a naïve synchronous API to an async, layered pipeline (edge validation, preprocessing, decoupled detection/verification, decision engine) to achieve 8.5k rpm, p99 < 1.8 s, 30 % cost savings, and strict privacy controls.

    InfoQinfoq.com15 min
  2. ModaLens: Measuring Image Sensitivity in Report-Conditioned Medical VLMs

    ModaLens introduces a paired image-swap audit to measure how radiology report availability affects image sensitivity in medical VLMs. It found that MedGemma-27B's answers changed significantly more often when the image was swapped if the report was not available, indicating reports reduce image reliance.

    Hugging Face Daily Papersarxiv.org1 minpaper
  3. FLAT: Resampling Image and Text into 1D Flexible-Length Aligned Transmodal Tokens for Retrieval and Generation

    FLAT is a pre‑training framework that encodes images and text into a shared 1D token sequence with variable length via nested dropout, enabling the same embeddings for cross‑modal retrieval and generation. It attains state‑of‑the‑art scores on COCO and Flickr30K for captioning, retrieval, and text‑to‑image generation, and supports interpolation and zero‑shot composed retrieval.

    Hugging Face Daily Papersarxiv.org1 minpaper
  4. Building a Reliable Script-to-Video Pipeline for Modern Web Applications

    A practical guide to building a reliable, observable script‑to‑video pipeline. It advocates a staged architecture (scene manifest → asset generation → voice → rendering → encoding), validates AI‑generated JSON with Zod, persists project and scene state, uses explicit workflow states, runs heavy work in background queues, limits concurrency, and stores voice, captions, and assets separately to ena…

    SitePointsitepoint.com11 min