andbleo
andbleo
I think the answer is neither. It looks like gen_landmark_48.py expects an annotated file with 15 columns, and the CelebA files only have 11 columns. If you look at the...
When I use the trainImageList.txt from the MTCNN-Tensorfow repo, I had to uncomment the following line to get gen_landmark_48.py to work: https://github.com/kuaikuaikim/DFace/blob/master/dface/prepare_data/gen_landmark_48.py#L52 After that, I was able to train ONet.
I applied the following diff based on the comments from that thread: ``` diff --git a/dface/core/detect.py b/dface/core/detect.py index a780158..889a1fe 100644 --- a/dface/core/detect.py +++ b/dface/core/detect.py @@ -387,6 +387,8 @@ face candidates:%d,...
This is what I get when I run `devbox info go`: ``` Error: No devbox.json found in this directory, or any parent directories. Did you run `devbox init` yet? ```...
I think we have two issues here: 1. The `info` command could return more information about the package (like a URL) 2. The `info` command should be usable outside of...
I think I have narrowed down where the issue occurs. I have the following line in my .zshrc: `eval "$(devbox global shellenv --init-hook)"` If I append to PATH before that...