From 58a3e248cb97c29d903a73679382d1cf95c606b9 Mon Sep 17 00:00:00 2001
From: Yannick DAYER <yannick.dayer@idiap.ch>
Date: Wed, 12 May 2021 12:01:53 +0200
Subject: [PATCH] Probe.references as list

---
 bob/bio/face/database/replaymobile.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bob/bio/face/database/replaymobile.py b/bob/bio/face/database/replaymobile.py
index 75927753..f07a5e41 100644
--- a/bob/bio/face/database/replaymobile.py
+++ b/bob/bio/face/database/replaymobile.py
@@ -97,8 +97,8 @@ class ReplayMobileCSVFrameSampleLoader(CSVToSampleLoaderBiometrics):
         # Set the references list in the probes for vanilla-biometrics
         if fields["purpose"].lower() != "enroll":
             if fields["attack_type"]:
-                # Attacks only compare to the target (no `spoof_neg`)
-                kwargs["references"] = fields["reference_id"]
+                # Attacks are only compare to their target (no `spoof_neg`)
+                kwargs["references"] = [fields["reference_id"]]
             else:
                 kwargs["references"] = self.references_list
         # One row leads to multiple samples (different frames)
-- 
GitLab