Skip to content
Snippets Groups Projects
Commit 09a697e2 authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Organized entry points

parent b6e0c468
No related branches found
No related tags found
1 merge request!50Ijb c highlevel
Pipeline #
......@@ -4,7 +4,12 @@ from bob.bio.face.database import IJBCBioDatabase
ijbc_directory = "[YOUR_IJBC_DIRECTORY]"
database = IJBCBioDatabase(
ijbc_11 = IJBCBioDatabase(
original_directory=ijbc_directory,
protocol='1:1'
)
ijbc_covariates = IJBCBioDatabase(
original_directory=ijbc_directory,
protocol='Covariates'
)
......@@ -378,7 +378,7 @@ def test_ijbb():
@db_available('ijbc')
def test_ijbc():
database = bob.bio.base.load_resource(
'ijbc', 'database', preferred_package='bob.bio.face')
'ijbc-11', 'database', preferred_package='bob.bio.face')
try:
check_database(database, models_depend=True, training_depends=True)
except IOError as e:
......
......@@ -117,7 +117,10 @@ setup(
'gbu = bob.bio.face.config.database.gbu:database',
'ijba = bob.bio.face.config.database.ijba:database',
'ijbb = bob.bio.face.config.database.ijbb:database',
'ijbc = bob.bio.face.config.database.ijbc:database',
'ijbc-11 = bob.bio.face.config.database.ijbc:ijbc_11',
'ijbc-covariates = bob.bio.face.config.database.ijbc:ijbc_covariates',
'lfw-restricted = bob.bio.face.config.database.lfw_restricted:database',
'lfw-unrestricted = bob.bio.face.config.database.lfw_unrestricted:database',
'mobio-image = bob.bio.face.config.database.mobio:mobio_image',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment