Skip to content
This repository was archived by the owner on Nov 27, 2024. It is now read-only.

Commit 1476499

Browse files
committed
Version v0.9.0
1 parent 78e6960 commit 1476499

File tree

9 files changed

+394
-25
lines changed

9 files changed

+394
-25
lines changed
6.52 MB
Binary file not shown.

Assets/Samples/Realtime_Inpaint.mp4

1.81 MB
Binary file not shown.
7.48 MB
Binary file not shown.
5.05 MB
Binary file not shown.

OnnxStack.Core/OnnxStack.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>0.8.0</Version>
4+
<Version>0.9.0</Version>
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>

OnnxStack.StableDiffusion/OnnxStack.StableDiffusion.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>0.8.0</Version>
4+
<Version>0.9.0</Version>
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>
@@ -43,7 +43,7 @@
4343
</ItemGroup>
4444

4545
<ItemGroup>
46-
<PackageReference Include="OnnxStack.Core" Version="0.8.0" Condition=" '$(Configuration)' == 'Release' " />
46+
<PackageReference Include="OnnxStack.Core" Version="0.9.0" Condition=" '$(Configuration)' == 'Release' " />
4747
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' " />
4848
</ItemGroup>
4949

OnnxStack.UI/OnnxStack.UI.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>0.8.0</Version>
4+
<Version>0.9.0</Version>
55
<OutputType>WinExe</OutputType>
66
<TargetFramework>net7.0-windows</TargetFramework>
77
<Nullable>disable</Nullable>
@@ -41,7 +41,7 @@
4141

4242
<ItemGroup>
4343
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.5.1" />
44-
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.8.0" Condition=" '$(Configuration)' == 'Release' " />
44+
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.9.0" Condition=" '$(Configuration)' == 'Release' " />
4545
<ProjectReference Include="..\OnnxStack.StableDiffusion\OnnxStack.StableDiffusion.csproj" Condition=" '$(Configuration)' == 'Debug' " />
4646
</ItemGroup>
4747

OnnxStack.UI/appsettings.json

Lines changed: 369 additions & 19 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@
1616

1717

1818
### Welcome to OnnxStack!
19-
OnnxStack is a library that provides higher-level services and integrations for .NET applications, enhancing the functionality and versatility of the `ONNX Runtime` and `Microsoft ML` projects, offering a comprehensive solution that empowers developers to build, deploy, and execute machine learning models seamlessly in .NET environments, unlocking a world of possibilities for intelligent applications.
19+
OnnxStack transforms machine learning in .NET, Seamlessly integrating with `ONNX Runtime` and `Microsoft ML`, this library empowers you to build, deploy, and execute machine learning models entirely within the .NET ecosystem. Bid farewell to Python dependencies and embrace a new era of intelligent applications tailored for .NET
20+
Welcome to Python-free AI integration with OnnxStack!
2021

2122

23+
### **[Discord](https://discord.gg/YxbQfbegdS)** | **[Youtube](https://www.youtube.com/@OnnxStack)**
24+
2225
# Projects
2326

2427
## **[OnnxStack.StableDiffusion](OnnxStack.StableDiffusion/README.md)**
@@ -88,6 +91,22 @@ The black part of the mask will be used buy the process to generate new content,
8891
```
8992

9093

94+
## **Realtime Stable Diffusion**
95+
Realtime stable diffusion is a process where the results are constantly rendered as you are working with the image or changing the settings, This can be fantastic if you are creating new artworks or editing existing images.
96+
97+
Performance will depend on hardware and models selected, but for `Latent Consistency Models` you can get up to 4fps with a 3090 :)
98+
99+
| Text To Image | Image To Image |
100+
| :--- | :--- |
101+
<video src="Assets/Samples/Realtime_TextToImage.mp4" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" width="512" ></video> | <video src="Assets/Samples/Realtime_ImageToImage.mp4" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" width="512" ></video>
102+
103+
104+
| Image Inpaint | Paint To Image |
105+
| :--- | :--- |
106+
<video src="Assets/Samples/Realtime_Inpaint.mp4" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" width="512" ></video> | <video src="Assets/Samples/Realtime_PaintToImage.mp4" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" width="512" ></video>
107+
108+
109+
91110

92111
More information and Examples can be found in the `OnnxStack.StableDiffusion` project **[README](OnnxStack.StableDiffusion/README.md)**
93112

0 commit comments

Comments
 (0)