You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

OpenVINO IR Trigger Backdoor PoC

This repository contains a minimal OpenVINO IR model that changes its output only when a specific trigger input is supplied.

Files:

  • openvino_trigger_backdoor.xml
  • openvino_trigger_backdoor.bin

Expected behavior:

  • Input [1.0, 2.0] returns class 0.
  • Input [1337.0, 7331.0] returns class 1.

Validation environment:

  • OpenVINO 2026.1.0
  • CPU plugin

Reproduction:

import numpy as np
from openvino import Core

core = Core()
model = core.read_model("openvino_trigger_backdoor.xml")
compiled = core.compile_model(model, "CPU")

normal = np.array([1.0, 2.0], dtype=np.float32)
trigger = np.array([1337.0, 7331.0], dtype=np.float32)

print(compiled([normal])[compiled.output(0)])
print(compiled([trigger])[compiled.output(0)])
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support