User’s Guide¶
The Database Interface¶
The bob.db.bio_filelist.Database
complies with the standard biometric verification database as described in Running Biometric Recognition Experiments.
All functions defined in that interface are properly instantiated, as soon as the user provides the required file lists.
Creating File Lists¶
The initial step for using this package is to provide file lists specifying the 'world'
(training), 'dev'
(development) and 'eval'
(evaluation) set to be used by the biometric verification algorithm.
The summarized complete structure of the list base directory (here denoted as basedir
) containing all the files should be like this:
basedir -- norm -- train_world.lst
| |-- train_optional_world_1.lst
| |-- train_optional_world_2.lst
|
|-- dev -- for_models.lst
| |-- for_probes.lst
| |-- for_scores.lst
| |-- for_tnorm.lst
| |-- for_znorm.lst
|
|-- eval -- for_models.lst
|-- for_probes.lst
|-- for_scores.lst
|-- for_tnorm.lst
|-- for_znorm.lst
The file lists contain several information that need to be available for the biometric recognition experiment to run properly. A complete list of possible information is:
filename
: The name of the data file, relative to the common root of all data files, and without file name extension.client_id
: The name or ID of the subject the biometric traces of which are contained in the data file. These names are handled asstr
objects, so001
is different from1
.model_id
:- used for model enrollment: The name or ID of the client model that should be enrolled. In most cases, the
model_id
is identical to theclient_id
. - used for scoring: The name or ID of the client model that the probe file should be compared with.
- used for model enrollment: The name or ID of the client model that should be enrolled. In most cases, the
claimed_client_id
:- used for scoring: The
client_id
of the client model that the probe file should be compared with.
- used for scoring: The
The following list files need to be created:
For training:
world file, with default name
train_world.lst
, in the default sub-directorynorm
. It is a 2-column file with format:filename client_id
two (optional) world files, with default names
train_optional_world_1.lst
andtrain_optional_world_2.lst
, in default sub-directorynorm
. The format is the same as for the world file. These files are not needed for most of biometric recognition algorithms, hence, they need to be specified only if the algorithm uses them.
For enrollment:
two model files for the development and evaluation set, with default name
for_models.lst
in the default sub-directoriesdev
andeval
, respectively. They are 3-column files with format:.. code-block:: text
filename model_id client_id
For scoring:
There exist two different ways to implement file lists used for scoring.
The first (and simpler) variant is to define a file list of probe files, where all probe files will be tested against all models. Hence, you need to specify two probe files for the development and evaluation set, with default name
for_probes.lst
in the default sub-directoriesdev
andeval
, respectively. They are 2-column files with format:filename client_id
The other option is to specify a detailed list, which probe file should be be compared with which client model, i.e., two score files for the development and evaluation set, with default name
for_scores.lst
in the sub-directoriesdev
andeval
, respectively. These files need to be provided only if the scoring is to be done selectively, meaning by creating a sparse probe/model scoring matrix. They are 4-column files with format:.. code-block:: text
filename model_id claimed_client_id client_id
For ZT score normalization:
Optionally, file lists for ZT score normalization can be added. These are
two files for t-score normalization for the development and evaluation set, with default name
for_tnorm.lst
in both sub-directoriesdev
andeval
, respectively. They are 3-column files with format:.. code-block:: text
filename model_id client_id
two files for z-score normalization for the development and evaluation set, with default name
for_znorm.lst
in both sub-directoriesdev
andeval
, respectively. They are 2-column files with format:.. code-block:: text
filename client_id
Note
The verification queries will use either only the probe or only the score files, so only one of them is mandatory.
In case both probe and score files are provided, the user should set the parameter use_dense_probe_file_list
, which specifies the files to consider, when creating the object of the Database
class.
Note
If the database does not provide an evaluation set, the scoring files can be omitted. Similarly, if the user only define for scoring files and omit the remaining ones, the only valid queries will be scoring-related ones.
Protocols and File Lists¶
When you instantiate a database, you have to specify the base directory that contains the file lists. If you have only a single protocol, you could specify the full path to the file lists described above as follows:
>>> db = bob.db.bio_filelist.Database('basedir/protocol')
Next, you should query the data, WITHOUT specifying any protocol:
>>> db.objects()
Alternatively, if you have more protocols, you could do the following:
>>> db = bob.db.bio_filelist.Database('basedir')
>>> db.objects(protocol='protocol')
When a protocol is specified, it is appended to the base directory that contains the file lists. This allows to use several protocols that are stored in the same base directory, without the need to instantiate a new database. For instance, given two protocols ‘P1’ and ‘P2’ (with filelists contained in ‘basedir/P1’ and ‘basedir/P2’, respectively), the following would work:
>>> db = bob.db.bio_filelist.Database('basedir')
>>> db.objects(protocol='P1') # Get the objects for the protocol P1
>>> db.objects(protocol='P2') # Get the objects for the protocol P2
Note that if you use several protocols as explained above, the scoring part should be defined in the same way for all the protocols, either by using for_probes.lst
or for_scores.lst
.
This means that at the time of the database instantiation, it will be determined (or specified using the use_dense_probe_file_list
optional argument), whether the protocols should use the content of for_probes.lst
or for_scores.lst
.
In particular, it is not possible to use a mixture of those for different protocols, once the database object has been created.