Animatix - LCM - Onnx Olive DirectML Optimized
Original Model
https://civitai.com/models/239873/animatix
C# Inference Demo
https://github.com/TensorStack-AI/OnnxStack
// Create Pipeline
var pipeline = LatentConsistencyPipeline.CreatePipeline("D:\\Models\\Animatix-LCM-onnx);
// Prompt
var promptOptions = new PromptOptions
{
Prompt = "Create an image of a majestic horse carrying a banner into battle, intricate design and details, hyperrealism, photorealistic, cinematic, 8k."
};
// Run pipeline
var result = await pipeline.GenerateImageAsync(promptOptions);
// Save Image Result
await result.SaveAsync("Result.png");