# AIrtist Photo MAL Realistic - Onnx Olive DirectML Optimized ## Original Model https://civitai.com/models/229332/airtist-photo-mal-realistic ## C# Inference Demo https://github.com/TensorStack-AI/OnnxStack ```csharp // Create Pipeline var pipeline = StableDiffusionPipeline.CreatePipeline("D:\\Models\\AirtistPhoto-onnx"); // Prompt var promptOptions = new PromptOptions { Prompt = "Craft an image of a sleek motorbike racing down a winding road, with mountains and forests in the background." }; // Run pipeline var result = await pipeline.GenerateImageAsync(promptOptions, schedulerOptions); // Save Image Result await result.SaveAsync("Result.png"); ``` ## Inference Result ![Intro Image](Sample.png)