You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
The Stable Diffusion API has been made a lot lower level, dependency injection has been pretty much removed and a lot of helper methods added to make it similar in use to diffusers (well sort of).
Running SD can now be as simple as:
varpipeline=StableDiffusionPipeline.CreatePipeline("D:\\Repositories\\stable-diffusion-v1-5");varpromptOptions=newPromptOptions{Prompt="Photo of a cute dog."};varresult=awaitpipeline.RunAsync(promptOptions);varimage=result.ToImage();awaitimage.SaveAsPngAsync("D:\\Results\\Image.png");
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
API Redesign (Breaking Changes!!)
The Stable Diffusion API has been made a lot lower level, dependency injection has been pretty much removed and a lot of helper methods added to make it similar in use to diffusers (well sort of).
Running SD can now be as simple as:
What's Changed
New Contributors
Nuget Packages Updated
https://www.nuget.org/packages/OnnxStack.Core/0.19.0
https://www.nuget.org/packages/OnnxStack.ImageUpscaler/0.19.0
https://www.nuget.org/packages/OnnxStack.StableDiffusion/0.19.0
https://www.nuget.org/packages/OnnxStack.FeatureExtractor/0.19.0
Full Changelog: v0.17.0...v0.19.0
Example UI Builds
CUDA 11
andcuDNN
toolkitCUDA 11
,cuDNN
and TensorRT librariesThis discussion was created from the release v0.19.0 - API Redesign .
Beta Was this translation helpful? Give feedback.
All reactions