Péter Major
Péter Major
1. Not yet, admittedly speed and/or resolution would be limited on a mobile chip, or would take quite long to generate an image. 2. Would require some work, but should...
I have tried the same converted network with https://github.com/azuritecoin/OnnxDiffusersUI, the same issue present with batch size 2 and above. So at least now I know that the issue is not...
Ok, I did some investigation, my experience is that any model I convert, be it from HuggingFace, CivitAI, ckpt or safetensors, the resulting model will not work properly with batch...
Please refer to my C++ solution, which also uses ONNX runtime: https://github.com/cassiebreviu/StableDiffusion Here is a sample app: https://github.com/axodox/unpaint My example also does inpainting.
You may copy a safety checker onnx from any other model. Eg.: https://huggingface.co/axodoxian/protovision_xl_onnx/tree/main/safety_checker
We would like this as well with C++/WinRT and XAML UI.
We seem to have found a workaround which allows this to work, it requires two basic things: - First you need to use a custom InitializeComponent() implementation, so you specify...
> @axodox Would you mind providing some example code showing how you went about this? Yes, but I have some other work to do now, so probably sometime next week.
So here is how we were able to load WinUI controls / converters from plug-ins: First some notes: - We are using WinUI 2.x Nuget with C++/WinRT in a UWP...
> Great! But is there any way how to do this in C# with System.Reflection.Assembly? Because I don't know how should I replicate this in C# :( I think there...