saddam213 commited on
Commit
5e89766
·
verified ·
1 Parent(s): ecf0592

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -28
README.md CHANGED
@@ -1,29 +1,32 @@
1
- #FLUX.1-schnell - Onnx Olive DirectML Optimized
2
-
3
- ## Original Model
4
- https://huggingface.co/black-forest-labs/FLUX.1-schnell
5
-
6
- ## C# Inference Demo
7
- https://github.com/TensorStack-AI/OnnxStack
8
-
9
- ```csharp
10
- // Create Pipeline
11
- var pipeline = FluxPipeline.CreatePipeline("D:\\Models\\Flux_schnell-f32-onnx");
12
-
13
- // Prompt
14
- var promptOptions = new PromptOptions
15
- {
16
- GuidanceScale = 0f,
17
- InferenceSteps = 4,
18
- SchedulerType = SchedulerType.FlowMatchEulerDiscrete,
19
- Prompt = "Create an image of a wise old wizard with a long white beard, holding a staff topped with a crystal and casting a spell"
20
- };
21
-
22
- // Run pipeline
23
- var result = await pipeline.GenerateImageAsync(promptOptions);
24
-
25
- // Save Image Result
26
- await result.SaveAsync("Result.png");
27
- ```
28
- ## Inference Result
 
 
 
29
  ![Intro Image](Sample.png)
 
1
+ ---
2
+ pipeline_tag: text-to-image
3
+ ---
4
+ #FLUX.1-schnell - Onnx Olive DirectML Optimized
5
+
6
+ ## Original Model
7
+ https://huggingface.co/black-forest-labs/FLUX.1-schnell
8
+
9
+ ## C# Inference Demo
10
+ https://github.com/TensorStack-AI/OnnxStack
11
+
12
+ ```csharp
13
+ // Create Pipeline
14
+ var pipeline = FluxPipeline.CreatePipeline("D:\\Models\\Flux_schnell-f32-onnx");
15
+
16
+ // Prompt
17
+ var promptOptions = new PromptOptions
18
+ {
19
+ GuidanceScale = 0f,
20
+ InferenceSteps = 4,
21
+ SchedulerType = SchedulerType.FlowMatchEulerDiscrete,
22
+ Prompt = "Create an image of a wise old wizard with a long white beard, holding a staff topped with a crystal and casting a spell"
23
+ };
24
+
25
+ // Run pipeline
26
+ var result = await pipeline.GenerateImageAsync(promptOptions);
27
+
28
+ // Save Image Result
29
+ await result.SaveAsync("Result.png");
30
+ ```
31
+ ## Inference Result
32
  ![Intro Image](Sample.png)