Adrià
Adrià
I think your linux distro will install the binaries in `/usr/bin/` but your current `cmake` command points to `/usr/local/bin/`. Try to cleanly get rid of the one in that `/usr/local/bin`.
It's failing when building libpng? Why is the `-Werror` flag enabled in your build?
Can you try by running: `CFLAGS='' pip install dlib`? I don't know if it will work. It works when I git clone and run `CFLAGS="" python setup.py install`
Also, you're using clang, maybe you can try with `CC=gcc pip install dlib`
No longer having this problem.
I think this might have been caused by the changes in the naming of the cache in the Zig build system. After updating Zig and rebuilding ZLS, it was fixed.
Ok, two things then: 1. can you try after deleting `.zig-cache` and `~/.cache/zig`? 2. if that doesn't work, it might be because I also updated my dependency (which I control)...
I've also tried by adding this to the `` inside AndroidManifest.xml: ```xml ``` But no noticeable changes. I would really appreciate some guidance.
Nice, I was just wondering if `matmul_prev` wouldn't be a better name.
Would it be too difficult to have just an `attention_` layer? I know that would mean doing the backpropagation by hand inside that layer, just like the `loss_barlowtwins` is doing...