KBOC16 Database¶
The ATVS Keystroke database
-
class
bob.db.kboc16.
Client
(id)[source]¶ Bases:
sqlalchemy.ext.declarative.api.Base
Database clients, marked by an integer identifier and the group they belong to
-
id
¶
-
-
class
bob.db.kboc16.
Database
(original_directory=None, original_extension='.txt')[source]¶ Bases:
bob.db.base.SQLiteDatabase
The dataset class opens and maintains a connection opened to the Database.
It provides many different ways to probe for the characteristics of the data and for the data itself inside the database.
-
client_groups
()[source]¶ Returns the names of the groups. This is specific to this database which does not have separate training, development and evaluation sets.
-
clients
(protocol=None, groups='eval')[source]¶ Returns a list of
Client
for the specific query by the user.Keyword Parameters:
- protocol
- Ignored.
- groups
- The groups (types) to which the clients belong either from (‘Genuine’, ‘Impostor’) Note that ‘eval’ is an alias for ‘Genuine’. If no groups are specified, then both clients are impostors are listed.
Returns: A list containing all the clients which have the given properties.
-
models
(protocol=None, groups='eval')[source]¶ - Returns a list of
Client
for the specific query by the user. - Models correspond to Clients for this database (At most one model per identity).
Keyword Parameters:
- protocol
- ‘A’ or ‘D’.
- groups
- The groups to which the subjects attached to the models belong (‘Genuine’) Note that ‘dev’, ‘eval’ and ‘world’ are alias for ‘Genuine’.
- Returns: A list containing all the models (model <-> client in AVTSKeystroke) belonging
- to the given group.
- Returns a list of
-
model_ids
(protocol=None, groups=None)[source]¶ - Returns a list of model ids for the specific query by the user.
- Models correspond to Clients for the XM2VTS database (At most one model per identity).
Keyword Parameters:
- protocol
- Ignored.
- groups
- The groups to which the subjects attached to the models belong (‘dev’, ‘eval’, ‘world’) Note that ‘dev’, ‘eval’ and ‘world’ are alias for ‘client’. If no groups are specified, then both clients are impostors are listed.
- Returns: A list containing all the model ids (model <-> client in XM2VTS) belonging
- to the given group.
-
client
(id)[source]¶ Returns the client object in the database given a certain id. Raises an error if that does not exist.
-
objects
(protocol=None, purposes=None, model_ids=None, groups=None, classes=None)[source]¶ Returns a list of
File
for the specific query by the user.Keyword Parameters:
- protocol
- One of the KBOC16 protocols (‘A’).
- purposes
- The purposes required to be retrieved (‘enrol’, ‘probe’) or a tuple with several of them. If ‘None’ is given (this is the default), it is considered the same as a tuple with all possible values. This field is ignored for the data from the “world” group.
- model_ids
- Only retrieves the files for the provided list of model ids (claimed client id). The model ids are string. If ‘None’ is given (this is the default), no filter over the model_ids is performed.
- groups
- One of the groups (‘dev’, ‘eval’, ‘world’) or a tuple with several of them. If ‘None’ is given (this is the default), it is considered the same as a tuple with all possible values.
- classes
- The classes (types of accesses) to be retrieved (‘client’, ‘impostor’) or a tuple with several of them. If ‘None’ is given (this is the default), it is considered the same as a tuple with all possible values.
Returns: A list of
File
objects.
-
-
class
bob.db.kboc16.
File
(client_id, path, session_id, shot_id)[source]¶ Bases:
sqlalchemy.ext.declarative.api.Base
,bob.db.base.File
Generic file container
-
id
¶
-
path
¶
-
client
¶
-
client_id
¶
-
session_id
¶
-
shot_id
¶
-