|
# Stable-Diffusion v1-5 - Onnx Olive DirectML Optimized
|
|
|
|
## Original Model
|
|
https://huggingface.co/runwayml/stable-diffusion-v1-5
|
|
|
|
## C# Inference Demo
|
|
https://github.com/saddam213/OnnxStack
|
|
|
|
```csharp
|
|
// Create Pipeline
|
|
var pipeline = StableDiffusionPipeline.CreatePipeline("D:\\Models\\Stable-Diffusion-v1-5-onnx);
|
|
|
|
// Prompt
|
|
var promptOptions = new PromptOptions
|
|
{
|
|
Prompt = "photo of a cat"
|
|
};
|
|
|
|
// Run pipeline
|
|
var result = await pipeline.GenerateImageAsync(promptOptions, schedulerOptions);
|
|
|
|
// Save Image Result
|
|
await result.SaveAsync("Result.png");
|
|
```
|
|
|