Victor Shepardson

Results 13 issues of Victor Shepardson

https://github.com/DmitryUlyanov/AGE/blob/0915760d0506cbb3a371aece103745e1ed4806ee/src/losses.py#L38-L41 KLD appears to use variance in place of standard deviation. utils.var() computes variance as squared distance from mean. Then it's squared again in the KLN01Loss module. Should it be...

Hi, I'm trying to use PackageCompiler to build a shared library which I can link into a relocatable plugin for a complex piece of C++ software, specifically, scsynth (https://supercollider.github.io/). OS:...

I think there is a bug when computing the receptive field for multichannel models: https://github.com/acids-ircam/RAVE/blob/8b250310fecfe61a6d9d53e8e5551851f4638d35/rave/core.py#L200 should the grad tensor be indexed to channel zero like `grad = x.grad[0,0].reshape(-1)` ?

I noticed when training causal models with RAVE v2 that the validation audio sounds pretty bad. If I'm understanding correctly, it's because V2 crops to the valid (as in convolution)...

Suggestion: change the default value of `n_signal` in `train.py` to 122880. If I'm not mistaken, the current defaults for `preprocess.py` (`train.py`) set `num_signal` (`n_signal`) to the same value, 131072, which...

PR for suggestion https://github.com/acids-ircam/RAVE/issues/185

Has anyone had success training the unconditional generation model? Any checkpoints or idea of how many epochs it takes to converge?

## Motivation Not exactly a bug since the helpfile is clear, but `String.shellQuote` is not useful on windows, since single quotes don't work to escape space in cmd.exe. Would it...

enhancement
os: Windows
comp: class library

## Motivation `Download` doesn't follow redirects, so urls which work in a browser or with `curl -L` download as 0 bytes. In particular this affects downloads from github release pages....

enhancement

In `get_padding`, I think the padding should be reduced by `stride-1` -- otherwise the last few elements of the input are discarded (they only affect the next frame, via the...