-
Hello, I'm a student, Can you help me, or read its processing flow ? Thank you very much |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Sure, check this article: https://blog.dlib.net/2017/08/ |
Beta Was this translation helpful? Give feedback.
-
Is there any way I can read the mod file mmod_human_face_detector.dat |
Beta Was this translation helpful? Give feedback.
-
I don't know what you mean by "read" the file, just use it as in the example:
If you want to inspect the weights, instead, you can use If you want to actually see the model architecture, you can use |
Beta Was this translation helpful? Give feedback.
This image was generated using the
dlib::net_to_dot
function in the C++ example I mentioned above.Then:
$ dot -T png < mmod_human_face_detector.dot > mmod_human_face_detector.png
You can also generate a PDF:
$ dot -T pdf < mmod_human_face_detector.dot > mmod_human_face_detector.pdf
You must have Graphviz installed for this to work (the
dot
executable is part of Graphviz).Here's the generated file, so you can modify it and re-run the
dot
command on it: mmod_human_face_detector.dotFor the citation, just cite dlib.