Adrià

Results 124 comments of Adrià

Yes, we would lose flexibility, or maybe that layer could be initialized with a struct of options that control the behavior/features of the attention layer. But yes, it would still...

I've run the test on my GPU machine (`dtest --runall`) and they all pass.

Yes, I want to encourage you to keep up with this great work! I can't wait to try training transformer-based networks in dlib :) And of course, I will try...

You should be able to merge the master branch into this one and get the `tril_` layer here too, so the tests pass. Something seems off, where you have the...

> * investigate how various editors deal with custom semantic tokens Regarding this part, I have experience using @kakoune-lsp, which provides a straightforward approach. Here's [my configuration](https://github.com/arrufat/config/blob/bfce4a0c89083ce4431f0b9cecc5aaee21c6c077/kak/languages.kak#L147-L212), where `face` fields...

I added RUST_BACKTRACE, lsp_debug, compiled kakoune-lsp in debug mode, etc. what am I missing?

Ah, I didn't copy the full log before: ``` *** This is the debug buffer, where debug info will be written *** LSP: INFO kak-lsp server starting (PID=2040805). To control...

I think it can be done like: ```zig color.to(f32, Hsv) ``` The second parameter is: ```zig function: fn(comptime T: type, a: T, b: T, c: T) function(T)) ``` Or `anytype`...

I got it working while waiting for my flight. Here's a self-contained example that can convert between `Rgb` and `Hsv` using your proposed syntax, except that the floating point precision...

What do you think about this API, @Traxar? - `.to` for converting between color spaces - `.as` for converting the underlying numeric type (`u8`, `f32`, `f64`) After this change, the...