- Mar 02, 2024
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
silk_burg_analysis() could return a slightly negative value on zero input, which would cause a negative, which the log didn't like.
-
- Feb 27, 2024
-
-
Jean-Marc Valin authored
-fargan-synthesis not -fargan_synthesis
-
- Feb 25, 2024
-
-
Jean-Marc Valin authored
-
- Feb 23, 2024
-
-
The existing code in vec_avx.h produced warning: dereferencing type-punned pointer will break strict-aliasing rules with gcc 6.4.0. We already had a macro to work around this within the rules of the C standard, but trying to use that here does not get optimized into a single MOVD like we were hoping. Replacing it with memcpy() instead does get optimized correctly, but requires switching from a macro to an inline function in order to be able to declare a local variable and return a value. We already have such an inline function in NSQ_del_dec_avx2.c, so hoist that out and use it everywhere, and then convert vec_avx.h to use it also.
-
- Feb 18, 2024
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
- Feb 17, 2024
-
-
Jean-Marc Valin authored
Also skip the first loss values being generated since they're biased towards "not lost" due to the initialization.
-
- Feb 15, 2024
-
-
Jan Buethe authored
-
Jan Buethe authored
-
- Feb 06, 2024
-
-
Jean-Marc Valin authored
Fails ubsan because memcpy declares args as non-null
-
- Jan 31, 2024
-
-
Jean-Marc Valin authored
-
- Jan 23, 2024
-
-
Jan Buethe authored
-
- Jan 22, 2024
-
-
Jan Buethe authored
-
Jan Buethe authored
-
- Jan 21, 2024
-
-
Jean-Marc Valin authored
No longer needed now that PLC is trained with PyTorch stack
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
Should handle the history in a more consistent way. Slightly increase the model size and re-enable biased band loss in training.
-
- Jan 20, 2024
-
-
Jan Buethe authored
-
- Jan 17, 2024
-
-
Jean-Marc Valin authored
mostly untested
-
- Jan 15, 2024
-
-
Jean-Marc Valin authored
Should match the TF2 code, but mostly untested
-
- Dec 22, 2023
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
- Dec 21, 2023
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
- Dec 20, 2023
-
-
- Dec 15, 2023
-
-
Michael Klingbeil authored
-
- Nov 30, 2023
-
-
Michael Klingbeil authored
-
- Nov 29, 2023
-
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
-
Jean-Marc Valin authored
Also default to disabling dnn float debugging
-
Jean-Marc Valin authored
Still don't quite know what I'm doing
-
- Nov 28, 2023
-
-
Jean-Marc Valin authored
Compilers sometimes replace vmlaq*() with fmul+fadd instead of fmla. Trying to use vfmaq*() instead when possible.
-
Jean-Marc Valin authored
Finished adversarial training on 800k model. Also, move weights to a new location.
-
- Nov 27, 2023
-
-
Jean-Marc Valin authored
Adds RTCD tables for compute_activation() and compute_conv2d()
-
Jean-Marc Valin authored
-