Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.face
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.bio.face
Commits
df97b7f6
Commit
df97b7f6
authored
9 years ago
by
Manuel Günther
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of github.com:bioidiap/bob.bio.face
parents
2603ceb7
385eafc8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/bio/face/test/test_databases.py
+29
-27
29 additions, 27 deletions
bob/bio/face/test/test_databases.py
with
29 additions
and
27 deletions
bob/bio/face/test/test_databases.py
+
29
−
27
View file @
df97b7f6
...
@@ -68,114 +68,116 @@ def _check_annotations(database):
...
@@ -68,114 +68,116 @@ def _check_annotations(database):
def
test_arface
():
def
test_arface
():
database
=
bob
.
bio
.
base
.
load_resource
(
'
arface
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
arface
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database
(
database
,
groups
=
(
'
dev
'
,
'
eval
'
))
_check_database
(
database
,
groups
=
(
'
dev
'
,
'
eval
'
))
_check_annotations
(
database
)
_check_annotations
(
database
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the error:
'
%s
'"
%
e
)
def
test_atnt
():
def
test_atnt
():
_check_database
(
bob
.
bio
.
base
.
load_resource
(
'
atnt
'
,
'
database
'
))
_check_database
(
bob
.
bio
.
base
.
load_resource
(
'
atnt
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
))
def
test_banca
():
def
test_banca
():
database
=
bob
.
bio
.
base
.
load_resource
(
'
banca
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
banca
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database_zt
(
database
)
_check_database_zt
(
database
)
_check_annotations
(
database
)
_check_annotations
(
database
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The database could not be queried; probably the db.sql3 file is missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not be queried; probably the db.sql3 file is missing. Here is the error:
'
%s
'"
%
e
)
def
test_caspeal
():
def
test_caspeal
():
database
=
bob
.
bio
.
base
.
load_resource
(
'
caspeal
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
caspeal
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database
(
database
)
_check_database
(
database
)
_check_database
(
database
,
protocol
=
'
aging
'
)
_check_database
(
database
,
protocol
=
'
aging
'
)
_check_annotations
(
database
)
_check_annotations
(
database
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the error:
'
%s
'"
%
e
)
def
test_frgc
():
def
test_frgc
():
import
xml.sax
import
xml.sax
database
=
bob
.
bio
.
base
.
load_resource
(
'
frgc
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
frgc
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database
(
database
,
models_depend
=
True
)
_check_database
(
database
,
models_depend
=
True
)
_check_database
(
database
,
protocol
=
'
2.0.2
'
,
models_depend
=
True
)
_check_database
(
database
,
protocol
=
'
2.0.2
'
,
models_depend
=
True
)
_check_annotations
(
database
)
_check_annotations
(
database
)
except
xml
.
sax
.
SAXException
as
e
:
except
xml
.
sax
.
SAXException
as
e
:
raise
SkipTest
(
"
The database could not be opened, probably the original directory is wrong. Here is the
value
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not be opened, probably the original directory is wrong. Here is the error:
'
%s
'"
%
e
)
def
test_gbu
():
def
test_gbu
():
database
=
bob
.
bio
.
base
.
load_resource
(
'
gbu
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
gbu
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database
(
database
,
models_depend
=
True
)
_check_database
(
database
,
models_depend
=
True
)
_check_database
(
database
,
protocol
=
'
Bad
'
,
models_depend
=
True
)
_check_database
(
database
,
protocol
=
'
Bad
'
,
models_depend
=
True
)
_check_database
(
database
,
protocol
=
'
Ugly
'
,
models_depend
=
True
)
_check_database
(
database
,
protocol
=
'
Ugly
'
,
models_depend
=
True
)
_check_annotations
(
database
)
_check_annotations
(
database
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the error:
'
%s
'"
%
e
)
def
test_lfw
():
def
test_lfw
():
database
=
bob
.
bio
.
base
.
load_resource
(
'
lfw-restricted
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
lfw-restricted
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database
(
database
,
training_depends
=
True
,
models_depend
=
True
)
_check_database
(
database
,
training_depends
=
True
,
models_depend
=
True
)
_check_database
(
database
,
groups
=
(
'
dev
'
,
'
eval
'
),
protocol
=
'
fold1
'
,
training_depends
=
True
,
models_depend
=
True
)
_check_database
(
database
,
groups
=
(
'
dev
'
,
'
eval
'
),
protocol
=
'
fold1
'
,
training_depends
=
True
,
models_depend
=
True
)
_check_database
(
bob
.
bio
.
base
.
load_resource
(
'
lfw-unrestricted
'
,
'
database
'
),
training_depends
=
True
,
models_depend
=
True
)
_check_database
(
bob
.
bio
.
base
.
load_resource
(
'
lfw-unrestricted
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
),
training_depends
=
True
,
models_depend
=
True
)
_check_annotations
(
database
)
_check_annotations
(
database
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the error:
'
%s
'"
%
e
)
def
test_mobio
():
def
test_mobio
():
database
=
bob
.
bio
.
base
.
load_resource
(
'
mobio-image
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
mobio-image
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database_zt
(
database
,
models_depend
=
True
)
_check_database_zt
(
database
,
models_depend
=
True
)
_check_database_zt
(
database
,
protocol
=
'
female
'
,
models_depend
=
True
)
_check_database_zt
(
database
,
protocol
=
'
female
'
,
models_depend
=
True
)
_check_database_zt
(
bob
.
bio
.
base
.
load_resource
(
'
mobio-male
'
,
'
database
'
),
models_depend
=
True
)
_check_database_zt
(
bob
.
bio
.
base
.
load_resource
(
'
mobio-male
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
),
models_depend
=
True
)
_check_database_zt
(
bob
.
bio
.
base
.
load_resource
(
'
mobio-female
'
,
'
database
'
),
models_depend
=
True
)
_check_database_zt
(
bob
.
bio
.
base
.
load_resource
(
'
mobio-female
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
),
models_depend
=
True
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The database could not be queried; probably the db.sql3 file is missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not be queried; probably the db.sql3 file is missing. Here is the error:
'
%s
'"
%
e
)
try
:
try
:
_check_annotations
(
database
)
_check_annotations
(
database
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The annotations could not be queried; probably the annotation files are missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The annotations could not be queried; probably the annotation files are missing. Here is the error:
'
%s
'"
%
e
)
def
test_multipie
():
def
test_multipie
():
database
=
bob
.
bio
.
base
.
load_resource
(
'
multipie
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
multipie
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database_zt
(
database
,
training_depends
=
True
)
_check_database_zt
(
database
,
training_depends
=
True
)
_check_database_zt
(
bob
.
bio
.
base
.
load_resource
(
'
multipie-pose
'
,
'
database
'
),
training_depends
=
True
)
_check_database_zt
(
bob
.
bio
.
base
.
load_resource
(
'
multipie-pose
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
),
training_depends
=
True
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the import error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not queried; probably the db.sql3 file is missing. Here is the error:
'
%s
'"
%
e
)
except
ValueError
as
e
:
raise
SkipTest
(
"
The database could not queried; probably the protocol is missing inside the db.sql3 file. Here is the error:
'
%s
'"
%
e
)
try
:
try
:
_check_annotations
(
database
)
_check_annotations
(
database
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The annotations could not be queried; probably the annotation files are missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The annotations could not be queried; probably the annotation files are missing. Here is the error:
'
%s
'"
%
e
)
def
test_scface
():
def
test_scface
():
database
=
bob
.
bio
.
base
.
load_resource
(
'
scface
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
scface
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database_zt
(
database
)
_check_database_zt
(
database
)
_check_annotations
(
database
)
_check_annotations
(
database
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The database could not be queried; probably the db.sql3 file is missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not be queried; probably the db.sql3 file is missing. Here is the error:
'
%s
'"
%
e
)
def
test_xm2vts
():
def
test_xm2vts
():
database
=
bob
.
bio
.
base
.
load_resource
(
'
xm2vts
'
,
'
database
'
)
database
=
bob
.
bio
.
base
.
load_resource
(
'
xm2vts
'
,
'
database
'
,
preferred_extension
=
'
bob.bio.face
'
)
try
:
try
:
_check_database
(
database
,
groups
=
(
'
dev
'
,
'
eval
'
))
_check_database
(
database
,
groups
=
(
'
dev
'
,
'
eval
'
))
_check_database
(
database
,
groups
=
(
'
dev
'
,
'
eval
'
),
protocol
=
'
darkened-lp1
'
)
_check_database
(
database
,
groups
=
(
'
dev
'
,
'
eval
'
),
protocol
=
'
darkened-lp1
'
)
_check_annotations
(
database
)
_check_annotations
(
database
)
except
IOError
as
e
:
except
IOError
as
e
:
raise
SkipTest
(
"
The database could not be queried; probably the db.sql3 file is missing. Here is the
import
error:
'
%s
'"
%
e
)
raise
SkipTest
(
"
The database could not be queried; probably the db.sql3 file is missing. Here is the error:
'
%s
'"
%
e
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment