scheckmedia / photils-cli

photils-cli is an application that passes an image through a neural network, classifies it, and extracts the suggested tags. Everything happens offline without the need that your data are sent over the internet.
GNU General Public License v3.0
42 stars 5 forks source link

Whatever the processed image all 3690 tags are displayed #5

Closed deuzene closed 4 years ago

deuzene commented 4 years ago

photils-cli-linux-x86_64.AppImage always find 3690 tags whatever the input image.

scheckmedia commented 4 years ago

Yes but they are sorted by accuracy. To see only N results you can pipe the output.

photils-cli-linux-x86_64.AppImage ... |head -n 10 for the top ten tags.

deuzene commented 4 years ago

Ok, I didn't know about that. Thanks.

scheckmedia commented 4 years ago

No problem, there is also a flag to show the probability.

deuzene commented 4 years ago

No problem, there is also a flag to show the probability.

What flag are you talking about? According to the README there are only -h -i and -o flags.

scheckmedia commented 4 years ago

--help shows you that -c is responsible to print out the confidence as well. I've forget to update the flag in the readme .

deuzene commented 4 years ago

Wow that's cool! Thanks for the job.