Upload 6 files
Browse files- README.md +25 -28
- Sample.png +0 -0
- Sample2.png +0 -0
- Sample3.png +0 -0
- Sample4.png +0 -0
README.md
CHANGED
@@ -1,29 +1,26 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
##
|
7 |
-
https://
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
//
|
14 |
-
var
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
//
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
await result.SaveAsync("Result.png");
|
27 |
-
```
|
28 |
-
## Inference Result
|
29 |
![Intro Image](Sample.png)
|
|
|
1 |
+
# LCM Dreamshaper v7 - Onnx Olive DirectML Optimized
|
2 |
+
|
3 |
+
## Original Model
|
4 |
+
https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7
|
5 |
+
|
6 |
+
## C# Inference Demo
|
7 |
+
https://github.com/saddam213/OnnxStack
|
8 |
+
|
9 |
+
```csharp
|
10 |
+
// Create Pipeline
|
11 |
+
var pipeline = LatentConsistencyPipeline.CreatePipeline("D:\\Models\\LCM_Dreamshaper_v7-onnx");
|
12 |
+
|
13 |
+
// Prompt
|
14 |
+
var promptOptions = new PromptOptions
|
15 |
+
{
|
16 |
+
Prompt = "Depict a stoic dwarf warrior, with a braided beard and a massive hammer, standing guard in a mountain stronghold."
|
17 |
+
};
|
18 |
+
|
19 |
+
// Run pipeline
|
20 |
+
var result = await pipeline.GenerateImageAsync(promptOptions);
|
21 |
+
|
22 |
+
// Save Image Result
|
23 |
+
await result.SaveAsync("Result.png");
|
24 |
+
```
|
25 |
+
## Inference Result
|
|
|
|
|
|
|
26 |
![Intro Image](Sample.png)
|
Sample.png
CHANGED
Sample2.png
CHANGED
Sample3.png
CHANGED
Sample4.png
CHANGED