-
Hello, I'm having some difficulty understanding how Recognize is supposed to behave, so I have a few questions. If this is basic stuff and there are answers elsewhere, please point me to that resource; I haven't found anything that answers these questions. For some context, my configuration is: System Configuration
Recognize Configuration:
I think Recognize runs in the background via occ cron. It seems to run every 30 minutes.
Thanks for your hard work on this project! Brian |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
It would definitely help if there was an occ command that just does that: a full crawl using like 75% of the cores without any weird undocumented intransparent job scheduling, just to run it as initial scan. ~140k files here, i had to increase batch size and lower the interval timing in the code, then ran cron.php using watch -n 1 in a loop, after days of debugging to get it to actually run. If you're just interested in the faces and you're willing to tinker around a bit during install, you might want to give https://github.com/matiasdelellis/facerecognition a try too, seems more straightforward with better results according to tests and has a more useful ui. https://github.com/pulsejet/memories is definitely a must have too, it will have support for facerecognition too, soon. This app should be the default photos app in my opinion. Very responsive dev too |
Beta Was this translation helpful? Give feedback.
It would definitely help if there was an occ command that just does that: a full crawl using like 75% of the cores without any weird undocumented intransparent job scheduling, just to run it as initial scan.
That would be a big win, and if the user had more control over intervals, batch sizes of the different jobs and other settings which are all pretty self-explanatory,, or at least if there was an explanation somewhere in the readme as to what to expect and how the app is supposed to work, as clearly the majority of people in the issues on GitHub are confused over the erratic behavior of recognize (if they manage to get it to run at all)
~140k files here, i had to increase batch size an…