diff --git a/bob/paper/eusipco2018/__init__.py b/bob/paper/eusipco2018/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..bf201ffc9fbf1db5b4f29bcf7ab9c1744bebaedc --- /dev/null +++ b/bob/paper/eusipco2018/__init__.py @@ -0,0 +1,17 @@ +from . import database +from . import script +from . import scripts_db +from . import scripts_amicorpus +from . import utils + + +def get_config(): + """Returns a string containing the configuration information. + """ + + import bob.extension + return bob.extension.get_config(__name__) + + +# gets sphinx autodoc done right - don't remove it +__all__ = [_ for _ in dir() if not _.startswith('_')] diff --git a/doc/conf.py b/doc/conf.py index e519face22351766c4ea3ce069fadd228f24887b..c0d7b3e94f942c6fb2ee6eed86383a2bff05157b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -79,7 +79,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'bob.project.savi' +project = u'bob.paper.eusipco2018' import time copyright = u'%s, Idiap Research Institute' % time.strftime('%Y') @@ -131,7 +131,7 @@ pygments_style = 'sphinx' # Some variables which are useful for generated material project_variable = project.replace('.', '_') -short_description = u'Bob package for project MediFor-SAVI' +short_description = u'Bob package for EUSIPCO 2018 paper on audio-visual inconsistency detection' owner = [u'Idiap Research Institute'] diff --git a/doc/index.rst b/doc/index.rst index 3e3cc7fe35e9447b93896b5640aac8bb93e1a964..342e33bb288d31bbb75b60daccce248a544ba564 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -2,6 +2,8 @@ .. Pavel Korshunov <pavel.korshunov@idiap.ch> .. Thu 12 Jul 13:43:22 2018 +.. _bob.paper.eusipco2018: + ===================================================================================== Documentation for EUSIPCO paper "Speaker Inconsistency Detection in Tampered Video" ===================================================================================== @@ -114,6 +116,17 @@ Test the models and compute scores: $ bin/spoof.py bob/paper/eusipco2018/config/audio_extraction_pipeline.py -P train_dev -a gmm -s mfcc20mouthdeltas --projector-file Projector_gmm_mfcc20_mouthdeltas_spoof.hdf5 +=========== +Users Guide +=========== + +.. toctree:: + :maxdepth: 2 + + guide + + + Contact -------