From 88268621b072bb8ff9ff5f625fa0a42c4f1a1ea5 Mon Sep 17 00:00:00 2001 From: Manuel Gunther <siebenkopf@googlemail.com> Date: Thu, 24 Aug 2017 10:14:09 -0600 Subject: [PATCH] Changed example experiment in documentation --- doc/experiments.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/experiments.rst b/doc/experiments.rst index c718cedd..b0fc5ecd 100644 --- a/doc/experiments.rst +++ b/doc/experiments.rst @@ -74,22 +74,22 @@ To change this behavior, you can set the ``verbose`` variable to show: 3) Debug messages (``logging.DEBUG``) When running experiments, my personal preference is verbosity level ``2``. -So, a minimal configuration file (say: ``pca_mobio_cropped.py``) would look something like: +So, a minimal configuration file (say: ``pca_atnt.py``) would look something like: .. code-block:: py - database = 'mobio-image' - preprocessor = 'face-crop-eyes' + database = 'atnt' + preprocessor = 'face-detect' extractor = 'linearize' algorithm = 'pca' - sub_directory = 'PCA_MOBIO_cropped' + sub_directory = 'PCA_ATNT' verbose = 2 Running the experiment is then as simple as: .. code-block:: sh - $ verify.py pca_mobio_cropped.py + $ verify.py pca_atnt.py .. note:: To be able to run exactly the command line from above, it requires to have :ref:`bob.bio.face <bob.bio.face>` installed. -- GitLab