Joe Dluzen
Joe Dluzen
I also have this when trying to run `convert_stable_diffusion_checkpoint_to_onnx.py`. On Windows 11, Python 3.9.13, diffusers 0.9.0.
I've been trying to port it over, but it doesn't compile yet. There's no comprehensive porting guide available. If I get something going, I'll fork and PR it.
Same issue here all. ``` 05-29 11:23:46.089 I/MonoDroid( 7488): System.MissingMethodException: Method 'Android.Support.Design.Widget.FloatingActionButton.SetRippleColor' not found. 05-29 11:23:46.089 I/MonoDroid( 7488): at FAB.Droid.FloatingActionButtonRenderer.UpdateStyle () [0x00000] in :0 05-29 11:23:46.089 I/MonoDroid( 7488): at FAB.Droid.FloatingActionButtonRenderer.UpdateControlForSize...
Ok, got it. You can't use `SetRippleColor` at all. You have to use the `RippleColor` property, even in the try/catch. Perhaps it's trying to resolve the method/property at method start,...
This solved it for me: https://github.com/keannan5390/Xamarin.Plugin.FAB/issues/20#issuecomment-304700223
After reading a great many issues and posts, I was able to get it working. - Upgrading NL.Serverless to `net6.0` seems the be the biggest one. - I then had...
On XF 3.3, `OnSizeAllocated` is called with what looks like proper values, ~314 in my case. On XF 4.4 `OnSizeAllocated` is called with 1, 1.
I've spent a good amount of time debugging this, and it seems to be isolated to the `ContentPresenter`. The view isn't being rendered at all. I'm unsure what has changed...
Thanks for the ideas. Whisper.cpp did compile with OpenBLAS using `WHISPER_OPENBLAS=1 make` out of the box and verified with `ldd`. Unfortunately, it would not load in whisper.net, but I did...
The code does seem to be the general theme of it. Using the new EulerA scheduler, it appears to follow the image very slightly. There's no strength available, and I've...