Lukas Prediger
Lukas Prediger
In my application it sometimes happens that the results of multiplication of arithmetic shares are wrong i.e., not the result of the multiplication of the input values but some apparently...
Suggestion: Simple composition of `pld1`, `pld2` can now be expressed using `pld1 + pld2`, `k`-fold self-compositition as `k * pld1`. This allows for easy-to-read construction of complex PLD compositions, e.g.,...
### Motivation `Study._optimize_sequential` encounters an issue if `_run_trial` errors and callbacks are present, as seen in the following relevant code block: ```python try: frozen_trial = _run_trial(study, func, catch) finally: #...
**Describe the bug** The `arviz.from_numpyro` method has an argument `log_likelihood` which seems to enable the user to provide a dictionary(?) of likelihoods for posterior samples. However, it seems to be...
## Overview Reimplementation of `detect_silence`: Previously this function would invoke RMS computations independently for each slice of `min_silence_len` in the given audio segment, which leads to a lot of recomputing...
Issue #736 demonstrates that the `speedup` effect function becomes prohibitively slow for long audio segments. This is due to the loop in lines 90,91 of the speedup function ( `pydub/effects.py`...
This fixes some errors and a number of warnings I got when running the tests: - Some tests fail with ffmpeg error "Unknown encoder 'libvorbis'" - added skip condition if...