Ryan Hileman
Ryan Hileman
I am extremely in support of a native Mac build. I'm the developer behind https://talonvoice.com and I'm working hard on incorporating wav2letter as a supported speech backend on Mac w/...
It looks like the `libmklml.dylib` lib downloaded by the script in MKL-DNN also provides those cblas functions, so making it easier to detect and use that library would also solve...
Ok, my build script is attached. I removed the Accelerate dependency by manually setting `-DMKL_LIBRARIES='-lmkldnn -lmklml -liomp5'` to use mklml's cblas and I had to set `LIBRARY_PATH` because I was...
How should I test that the two BLAS functions are working? It Test/Decode link and runs and featurize + inference is producing correct output with mfsc / asg for me....
I noticed only the AdditiveNoise sfx has a loadSound dependency, so for now I've patched that one out of my flashlight: https://github.com/talonvoice/flashlight/commit/c03c61186a52f191cd6629bdcceddff9ad1000a7
I'm sort of on the fence about the benefits of including a sentencepiece runtime dependency directly in flashlight. I've found it easy enough to script outside of wav2letter [at training...
Hmm, I noticed performance degradation on the 28M conformer on a long (1.5min) clip, it just devolved into nonsense halfway through. Based on this it seems expected: https://github.com/facebookresearch/flashlight/issues/397#issuecomment-756643698 I would...
Hmm I like the arch layer lines, it would be much more annoying if I had to implement the whole sequentialbuilder logic myself, or recompile a shared library every time...
The most interesting form of "reproducible" for me is if a third party (unaffiliated with the original team) has posted a blog or whitepaper claiming similar results to the original,...
I think [this commit](https://github.com/lunixbochs/x-transformers/commit/ce5c5e0cee505c55291cdc9d70dbf9aad138d0e7) implements layer allocation for PAR compatible with the paper: Though, it might make more sense to set par_depth to `depth * len(default_block)` if anyone is mixing...