Animatix-LCM-onnx / README.md
saddam213's picture
Initial Upload
b5702c5 verified
|
raw
history blame
723 Bytes
# Animatix - LCM - Onnx Olive DirectML Optimized
## Original Model
https://civitai.com/models/239873/animatix
## C# Inference Demo
https://github.com/TensorStack-AI/OnnxStack
```csharp
// 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");
```
## Inference Result
![Intro Image](Sample.png)