Quick LCM - Onnx Olive DirectML Optimized
Original Model
https://civitai.com/models/171686?modelVersionId=288885
C# Inference Demo
https://github.com/TensorStack-AI/OnnxStack
// Create Pipeline
var pipeline = LatentConsistencyPipeline.CreatePipeline("D:\\Models\\Quick-LCM-onnx");
// Prompt
var promptOptions = new PromptOptions
{
Prompt = "Visualize a radiant goddess, with a celestial aura and divine power, standing atop a mountain with the sun rising behind her"
};
// Run pipeline
var result = await pipeline.GenerateImageAsync(promptOptions);
// Save Image Result
await result.SaveAsync("Result.png");