-
|
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_dotfunction in the C++ example I mentioned above.net_type net; deserialize(argv[1]) >> net; net_to_dot(net, "mmod_human_face_detector.dot");Then:
$ dot -T png < mmod_human_face_detector.dot > mmod_human_face_detector.pngYou can also generate a PDF:
$ dot -T pdf < mmod_human_face_detector.dot > mmod_human_face_detector.pdfYou must have Graphviz installed for this to work (the
dotexecutable is part of Graphviz).Here's the generated file, so you can modify it and re-run the
dotcommand on it: mmod_human_face_detector.dotFor the citation, just cite dlib.