Pablo Guerrero Rosel

Results 27 comments of Pablo Guerrero Rosel

@benedlore I'm not completely sure, but I have the impression that the diffusers library (https://github.com/huggingface/diffusers) uses the main SD model for inpainting with it's own engine. In this colab (https://colab.research.google.com/drive/1k9dnZDsVzKMk1-ZlBwZPUPVzDYZySmCQ)...

@Jellybit AFAIK the hlky fork doesn't have proper inpainting, just masking. It just performs diffusion as usual, and then applies the mask, but this can create artifacts on the boundaries....

Actually, I just found this pull request where they do something in between masking and inpainting, it might be interesting to see how it compares to real inpainting. https://github.com/hlky/stable-diffusion-webui/pull/308

I'm getting the same error on android 6.0. One thing I've noticed is that the path of the library is lib/armeabi/libmain.so inside the apk, but the error say it cannot...

Thanks for your answer. Again, let me reiterate my ignorance on this field, but this is what I've found. The implementation used in tract seems very simple https://github.com/sonos/tract/blob/21928fb3652d028db5be1348e6017494318d4b86/onnx-opl/src/erf.rs Looking at...

Thanks for looking at it. I hope one day we can be able to run something like SD in pure Rust.

I've tried to integrate an agnostic executor into riker and both options doesn't play well with the current riker architecture. Agnostik executor trait is not object-safe, therefore, to include it...

Another option to cover the different use cases would be to keep the current executor under a feature flag (when something lightweight is needed) and the tokio executor under another...

Just to let you know that the past weekend I've been investigating the solutions for agnostic async executors, and I'm trying to write a new crate without the limitations of...

@mankinskin I've continued with this the last few days and the rabbit hole of agnostic async executors is really deep, but I'm starting to see the light. The main architectural...