From 06a7f67130b1cd9886c43d278328daa4ac4d0dae Mon Sep 17 00:00:00 2001
From: Laurent COLBOIS <laurent.colbois@idiap.ch>
Date: Wed, 15 Jun 2022 13:52:54 +0000
Subject: [PATCH] Fix command instruction

---
 README.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.rst b/README.rst
index af391fe..4f6c8cb 100644
--- a/README.rst
+++ b/README.rst
@@ -197,9 +197,9 @@ The second part can be parallelized and consists in augmenting each generated re
 Here is an example when scaling synmultipie to 10k identities:
 ::
 
-   jman submit -n make_references -q gpu -o -s "PYTHONUNBUFFERED=1" -- ./bin/generate_db.py synmultipie -n 10000 --subtask create-identities  > create_identities_job_id
+   jman submit -n make_references -q gpu -o -s "PYTHONUNBUFFERED=1" -- ./bin/generate_db.py synmultipie -n 10000 --task references  > create_identities_job_id
    dependency=$(cat create_identities_job_id)
-   jman submit -n make_variations -q gpu -t 8 -x $dependency -s "PYTHONUNBUFFERED=1" -- ./bin/generate_db.py synmultipie -n 10000 --subtask populate-identities
+   jman submit -n make_variations -q gpu -t 8 -x $dependency -s "PYTHONUNBUFFERED=1" -- ./bin/generate_db.py synmultipie -n 10000 --task augmentations
 
 The first command launches a single job generating all references. One this job finishes, 8 parallel jobs between which
 the identities are split to generate all variations.
@@ -222,4 +222,4 @@ You can also contact the first author_.
 .. Place your references here:
 .. _bob: https://www.idiap.ch/software/bob
 .. _installation: https://www.idiap.ch/software/bob/install
-.. _stackoverflow: https://stackoverflow.com/questions/tagged/python-bob
\ No newline at end of file
+.. _stackoverflow: https://stackoverflow.com/questions/tagged/python-bob
-- 
GitLab