Beyond Prompt Degradation: Prototype-guided Dual-pool Prompting for Incremental Object Detection

This paper proposes PDP, a novel prompt-decoupled framework for Incremental Object Detection that utilizes a dual-pool prompting paradigm to separate task-general and task-specific knowledge while employing a prototypical pseudo-label generation module to mitigate prompt drift, thereby achieving state-of-the-art performance on MS-COCO and PASCAL VOC benchmarks.

Yaoteng Zhang, Zhou Qing, Junyu Gao, Qi Wang

Published 2026-03-04
📖 4 min read☕ Coffee break read

Imagine you are a detective trying to learn how to identify new types of suspects (objects) while remembering all the old ones you've already caught. This is the challenge of Incremental Object Detection (IOD).

The problem is that as you learn new tricks, you often start forgetting the old ones, or you get confused and mix up your old rules with new ones. This is called "catastrophic forgetting."

Recently, scientists tried solving this using "Prompts." Think of a prompt like a sticky note you stick on your detective's hat. It tells your brain, "Hey, we are looking for dogs right now," or "We are looking for cars."

However, the old way of using these sticky notes had two big flaws, which this paper calls Prompt Degradation:

  1. The "Crowded Desk" Problem (Prompt Coupling): Imagine you have one single, tiny desk where you throw every sticky note you've ever made. As you add more notes for new suspects, they start crumpling, overlapping, and smudging the old notes. Your brain gets confused because the "Dog" note is now stuck to the "Cat" note.
  2. The "False Accusation" Problem (Prompt Drift): In this detective game, when you learn about a new suspect (say, a "Robot"), the computer tells you to treat all the old suspects (like "Dogs") as just "background noise" (like a tree or a rock). This confuses your brain. It starts thinking, "Wait, I thought Dogs were important? Now I'm told they are just background?" So, your "Dog" sticky note gets rewritten and drifts away from the truth.

The Solution: PDP (Prototype-guided Dual-pool Prompting)

The authors of this paper built a new system called PDP to fix these messes. They used two clever ideas:

1. The "Two-Drawer Desk" (Dual-Pool Decoupling)

Instead of one messy desk, they gave the detective two separate drawers:

  • The Shared Drawer (The General Knowledge): This drawer holds sticky notes for things that are true for everyone. For example, "Look for edges," "Look for colors," or "Look for movement." These are general skills that help you spot any object. This drawer is constantly updated to get better at these general skills.
  • The Private Drawer (The Specific Knowledge): This drawer is for the specific suspects. When you learn about "Dogs," you get a private, locked drawer just for Dogs. When you learn about "Cars," you get a separate, locked drawer for Cars.

Why this works: The "Dog" notes never get mixed with the "Car" notes. The general skills help you find the object, and the private notes help you identify exactly what it is. They work together but don't get in each other's way.

2. The "Mugshot Album" (Prototype-Guided Pseudo-Labeling)

Remember the "False Accusation" problem? When the computer says, "Treat the old Dog as background," the detective gets confused.

To fix this, PDP creates a Mugshot Album (called a Prototype Space).

  • Every time the detective successfully identifies a "Dog," they take a perfect photo of it and put it in the album. This photo represents the "true essence" of a Dog.
  • Later, when the computer says, "That looks like background," the detective checks the album. "Wait," the detective says, "This blurry shape looks 90% like the Dog in my album. Even though the computer says it's background, I know it's a Dog!"
  • The system then creates a "Pseudo-Label" (a fake but reliable note) saying, "Actually, this is a Dog," and uses that to teach the model.

Why this works: It stops the detective from forgetting what a Dog looks like just because the computer told them to ignore it. It uses the "Mugshot" to keep the memory alive.

The Results

The paper tested this system on famous object detection datasets (like MS-COCO and PASCAL VOC).

  • The Result: The new system (PDP) became the best in the world (State-of-the-Art).
  • The Improvement: It improved detection accuracy by nearly 10% on some tests.
  • The Takeaway: By separating general skills from specific memories (the Two-Drawer Desk) and using a "Mugshot Album" to double-check the truth (the Prototype), the AI can learn new things without forgetting the old ones.

In short: PDP is like giving a detective a better filing system and a reliable photo album, so they can solve new cases without losing their memory of the old ones.