Stephen Buchanan

Results 53 comments of Stephen Buchanan

I'm curious why this issue marked closed if not actually resolved? The "bug" seems to still exist, as far as I can tell? The workaround above could be all right,...

Yes, I also get the error about `Input shape mismatch` every time, ONLY when I use `lopps-resnet50-V2-HW=368x432.onnx` And I'm pretty sure I'm setting the H and W properly, e.g.: ```...

> Your network is actually broken: In the Dockerised version, you mean? Is this something the maintainers need to fix?

> I think you can simplify your typing to just `const options: SynthOptions = `. The generics are there so that PolySynth is can take in multiple synth types and...

You might correct about that, but commenting out `partialsCount` simply pushes further problems. Next, TS complains about a bunch of properties missing in `oscillator`, so I added these... next I...

Right, so we get a little closer by using `FMSynthOptions` but still the example provided on the website would break if used as-is: ![Screenshot 2021-11-01 at 14 18 41](https://user-images.githubusercontent.com/3015222/139678048-8288184c-6672-47e9-857b-1e843ec71ac7.png) Notice...

I'm afraid that doesn't do it, either, because the `oscillator` property (which in turn is defined by `OmitSourceOptions`) still isn't satisfied as far as the compiler is concerned. Sorry if...

I am also trying to get something like this to work. So far, the closest I could get was this: ``` let s = Decoder::new(file).unwrap() .periodic_access(Duration::from_millis(40), move |s| { for...

Cross reference https://github.com/RustAudio/rodio/issues/238

Realised that I haven't implemented any way for the slave (client) players to re-sync when the master performs a seek like this. Going to get that right and add it...