Tidbits tagged with #python (4)
In part 1 I discovered the three steps that face recognition consists of, detection, identification and recognition. Now I want to dive a bit deeper into the first step, face detection by telling my story how I learned (about) it by doing it.
Continue reading →
I am trying to manage our family pics so family members can find those they like, build calendars, show the right ones to others and so on. Face recognition is a part of it. To say "show me the best pics with A, B and C" face recognition is a solution. I had started and tried it a lot of times, but I never got to satisfying results. I believe now the tooling exists, the learning material is accessible for non AI experts, like me, and I just want to get it done and learn ML/AI on a topic that I care about.
Continue reading →
How can I make a django model read-only? There seems to be no metadata option read_only
or alike in django. Well it's easy to do in the admin, but I am creating a model that serves a DB view, which is, at least in MariaDB not writable. So I want to throw an error when someone tries to update data in the view.
Continue reading →
I have been playing around with @tomayac's
awesome Local Reverse Geocoder
project. It basically resolves geo coordinates, latitiude+longitude pairs and gives you names for it.
Continue reading →