From 014f353cba63a0600ac7f4c0a253edcdf5003f0d Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 6 Mar 2023 14:14:38 +0100 Subject: [PATCH] doc(commands): Document more occ commands fixes #701 Signed-off-by: Marcel Klehr --- src/components/ViewAdmin.vue | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/components/ViewAdmin.vue b/src/components/ViewAdmin.vue index 97b0c02f..85b11ea9 100644 --- a/src/components/ViewAdmin.vue +++ b/src/components/ViewAdmin.vue @@ -169,9 +169,15 @@ -

{{ t('recognize', 'To trigger a full classification run manually, run the following command on the server terminal.') }}

+

{{ t('recognize', 'To trigger a full classification run, run the following command on the server terminal. (The classification will run in multiple background jobs which can run in parallel.)') }}

occ recognize:recrawl

 

+

{{ t('recognize', 'To run a full classification run on the terminal, run the following. (The classification will run in sequence inside your terminal.)') }}

+
occ recognize:classify
+

 

+

{{ t('recognize', 'To run a face clustering run on for each user in the terminal, run the following. (The clustering will run in sequence inside your terminal.)') }}

+
occ recognize:cluster-faces
+

 

{{ t('recognize', 'To download all models preliminary to executing the classification jobs, run the following command on the server terminal.') }}

occ recognize:download-models

 

@@ -180,6 +186,15 @@

 

{{ t('recognize', 'You can delete all tags that no longer have any files associated with them with the following command:') }}

occ recognize:cleanup-tags
+

 

+

{{ t('recognize', 'To remove all detected faces and face clusters run the following on the terminal:') }}

+
occ recognize:reset-faces
+

 

+

{{ t('recognize', 'To remove all face clusters but keep the raw detected faces run the following on the terminal:') }}

+
occ recognize:reset-face-clusters
+

 

+

{{ t('recognize', 'To remove tags that were created by recognize version 2 from all files run the following on the terminal:') }}

+
occ recognize:remove-legacy-tags

{{ t('recognize', 'By default all available CPU cores will be used which may put your system under considerable load. To avoid this, you can limit the amount of CPU Cores used. (Note: In WASM mode, currently only 1 core can be used at all times.)') }}