Iver Jordal
Iver Jordal
Hi @ak9250 I have made a repository where such instructions are available: https://github.com/iver56/automatic-video-colorization
Here's what worked for me on Ubuntu: `sudo apt-get install libpcre3 libpcre3-dev` `luarocks install lrexlib-pcre PCRE_LIBDIR=/lib/x86_64-linux-gnu`
Until novelty search is ready for python, you can simply implement novelty search yourself. All you have to do is write the fitness function so it rewards novelty, as described...
More transforms have been added. Can you update the app?
Thanks! [Done](https://github.com/iver56/audiomentations/commit/c595efdca7281c3da78ad507d73aff5a1d11861c)
Not sure how to do the API documentation. Here are some styles: # 1  # 2  # 3  I think I'm leaning towards 1, because the markdown...
Hi @Thanatoz-1 Help is appreciated :) As you can see from the commits lately, I have begun working on the documentation already, but most of the waveform transforms docs are...
Cross-fading segments instead of hard-cutting them can alleviate discontinuities. See illustration below. Hard-cut:  Cross-fade:  Note: This crudely illustrates the concept. Do not actually use the illustrated curve for...
I had this problem too. I think the non-differentiability of sqrt at 0 is the culprit here. Adding a very small value before taking sqrt, or somehow avoid passing zeroes...
> > > > I had this problem too. I think the non-differentiability of sqrt at 0 is the culprit here. Adding a very small value before taking sqrt, or...