Compare commits

..

No commits in common. "2c09745a9fea90b9802ff216ba0f78486c59de58" and "9e22bd0e20bc3a3ca7671ae7ab1865be5aee1f16" have entirely different histories.

3 changed files with 8 additions and 9 deletions

View File

@ -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 l \
$ find "$GALLERY/images" -type f \
| build/deeptagger --pipe -b 16 -t 0.5 \
models/ml_caformer_m36_dec-5-97527.model \
| sed 's|[^\t]*/||' \

View File

@ -28,9 +28,11 @@ run() {
for model in models/*.model
do
name=$(sed -n 's/^name=//p' "$model")
for batch in 1 4 16
do
run "" $batch "$model" "$@"
run --cpu $batch "$model" "$@"
done
run "" 1 "$model" "$@"
run "" 4 "$model" "$@"
run "" 16 "$model" "$@"
run --cpu 1 "$model" "$@"
run --cpu 4 "$model" "$@"
run --cpu 16 "$model" "$@"
done

View File

@ -296,9 +296,6 @@ func cmdInit(fs *flag.FlagSet, args []string) error {
if fs.NArg() != 1 {
return errWrongUsage
}
if err := os.MkdirAll(fs.Arg(0), 0755); err != nil {
return err
}
if err := openDB(fs.Arg(0)); err != nil {
return err
}