New book release 0.11.0 :sheepy: :sheepy: :sheepy: Adaptive Learning Rates: RMSprop and Adam https://aiprobook.com/deep-learning-for-programmers/
hello all, anyone used GraalVM with libs from Python?
@fabrao Have you taken a look at libpython-clj? https://github.com/cnuernber/libpython-clj
@metasoarous I´ve never heard about it. Do you think can I use the opencv stuffs with this?
I imagine. This is @chris441's baby; He may know whether anyone has tried opencv with it yet.
@fabrao Likely, yes. I know that someone has run the libpython-clj unit tests from graalVM. We have used matplotlib which I can't imagine is any crazier than opencv.
if you want to use opencv you can also check out https://github.com/hellonico/origami
Also: https://github.com/techascent/tech.opencv And I use opencv to validate tvm-clj.
@gigasquid I´ve used it, but other libs like face-recognition only in python
@fabrao - Are you using MTCNN?
I tried many libs, but the https://github.com/ageitgey/face_recognition is the simplest lib I´ve used, you can get recognition with one picture
even if you rotate head a little
Cool 🙂. I did facial rec for a while. @gigasquid told me about insightface which I really liked for created the actual feature vectors.
Have you used it with core.async?
I´m thinking using it like chan of images to speed up processing and skipping some frames to increase fps
I have not used it with core.async. When I was working with that stuff I found batching to be the most effective. Processing 32 image batches or something (whatever your RAM allows) worked very well as opposed to processing 1 image.
But I was finding a lot of faces in 1 image.
So I had a lot of faces to create vectors out of.
Parallelizing the actual find-faces pathway was also useful. But for our use case MTCNN at that time was markedly better than dlib. Times change, however, as does the version of dlib so YMMV.
Did you use it with clojure or python?
I need it with face recognition, not only detection
We used both mtcnn and insightface from python.
via clojure.java.shell
There are better face detectors than MTCNN now though. I think there are a few of them in the deepinsight repo that contains insightface: https://github.com/deepinsight
This version of MTCNN worked the best: https://github.com/ipazc/mtcnn
OK, I have to stop 🙂. I could go on quite a bit. Good luck!
thanks