aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2024-12-08 22:16:11 +0100
committerPřemysl Eric Janouch <p@janouch.name>2024-12-08 22:16:11 +0100
commit2c09745a9fea90b9802ff216ba0f78486c59de58 (patch)
treeecae4d5570743da0eb4acaaeab56a39c4892f3ac
parentbeb7c5e33747432f9d4d8b99838e752eb5fa6871 (diff)
downloadgallery-2c09745a9fea90b9802ff216ba0f78486c59de58.tar.gz
gallery-2c09745a9fea90b9802ff216ba0f78486c59de58.tar.xz
gallery-2c09745a9fea90b9802ff216ba0f78486c59de58.zip
deeptagger: fix README.adoc instructions
The images are under normal circumstances all symlinks. What we're actually trying to express is `-not -type d`, however that is not completely portable.
-rw-r--r--deeptagger/README.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/deeptagger/README.adoc b/deeptagger/README.adoc
index c42d3f9..fea2c0e 100644
--- a/deeptagger/README.adoc
+++ b/deeptagger/README.adoc
@@ -53,7 +53,7 @@ Tagging galleries
The appropriate invocation depends on your machine, and the chosen model.
Unless you have a powerful machine, or use a fast model, it may take forever.
- $ find "$GALLERY/images" -type f \
+ $ find "$GALLERY/images" -type l \
| build/deeptagger --pipe -b 16 -t 0.5 \
models/ml_caformer_m36_dec-5-97527.model \
| sed 's|[^\t]*/||' \