Skip to content

Releases: TensorStack-AI/OnnxStack

v0.39.0 - Maintenance Update

12 Jun 22:19
87f1571
Compare
Choose a tag to compare

v0.31.0 - Model Conversion Scripts

25 Apr 21:45
9b84ca2
Compare
Choose a tag to compare

v0.27.0 - Upscale & Feature Extractor Improvements

31 Mar 04:52
648d74b
Compare
Choose a tag to compare

v0.25.0 - Background Removal

14 Mar 20:42
a5c6a7c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.23.0...v0.25.0

v0.23.0 - Maintenance Update

29 Feb 22:16
d76a113
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.22.0...v0.23.0

Nuget Packages Updated

https://www.nuget.org/packages/OnnxStack.Core/0.23.0
https://www.nuget.org/packages/OnnxStack.ImageUpscaler/0.23.0
https://www.nuget.org/packages/OnnxStack.StableDiffusion/0.23.0
https://www.nuget.org/packages/OnnxStack.FeatureExtractor/0.23.0

Example UI Builds

OnnxStack_UI_v0.23.0.zip - All CPU and GPUs
OnnxStack_UI_v0.23.0_NVIDIA.zip - Optimized specifically for Nvidia GPUs

v0.22.0 - Video Stream Support

23 Feb 21:48
2928d00
Compare
Choose a tag to compare

v0.21.0 - Support Low Memory Devices

15 Feb 23:06
a97b01c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.19.0...v0.21.0

v0.19.0 - API Redesign

01 Feb 22:26
9f42b0e
Compare
Choose a tag to compare

API Redesign (Breaking Changes!!)

The Stable Diffusion API has been made a lot lower level, dependency injection has been pretty much removed and a lot of helper methods added to make it similar in use to diffusers (well sort of).

Running SD can now be as simple as:

var pipeline = StableDiffusionPipeline.CreatePipeline("D:\\Repositories\\stable-diffusion-v1-5");
var promptOptions = new PromptOptions { Prompt = "Photo of a cute dog." };
var result = await pipeline.RunAsync(promptOptions);
var image = result.ToImage();
await image.SaveAsPngAsync("D:\\Results\\Image.png");

What's Changed

New Contributors

Nuget Packages Updated

https://www.nuget.org/packages/OnnxStack.Core/0.19.0
https://www.nuget.org/packages/OnnxStack.ImageUpscaler/0.19.0
https://www.nuget.org/packages/OnnxStack.StableDiffusion/0.19.0
https://www.nuget.org/packages/OnnxStack.FeatureExtractor/0.19.0

Full Changelog: v0.17.0...v0.19.0

Example UI Builds

Name ONNX EP Device Requirements Status
OnnxStack_UI.zip DirectML CPU, AMD GPU, Nvidia GPU At least Windows10 Stable
OnnxStack_UI_Cuda.zip CUDA CPU, Nvidia GPU CUDA 11 and cuDNN toolkit Experimental
OnnxStack_UI_TensorRT.zip TensorRT CPU, Nvidia GPU CUDA 11 , cuDNN and TensorRT libraries Experimental

v0.17.0 - LCM LoRA model Support

19 Jan 00:50
90bb9f1
Compare
Choose a tag to compare

v0.16.0 - Video Batch + Video Upscale

12 Jan 00:00
c042de9
Compare
Choose a tag to compare

Video Batch

Now create batches of stable diffusion videos using BatchOptions

Video Upscale

Upscale short video clips using the ImageUpscale pipeline

What's Changed

New Contributors

Nuget Packages Updated

https://www.nuget.org/packages/OnnxStack.Core/0.16.0
https://www.nuget.org/packages/OnnxStack.ImageUpscaler/0.16.0
https://www.nuget.org/packages/OnnxStack.StableDiffusion/0.16.0

Full Changelog: v0.15.0...v0.16.0

Example UI Builds

Name ONNX EP Device Requirements Status
OnnxStack_UI.zip DirectML CPU, AMD GPU, Nvidia GPU At least Windows10 Stable
OnnxStack_UI_Cuda.zip CUDA CPU, Nvidia GPU CUDA 11 and cuDNN toolkit Experimental
OnnxStack_UI_TensorRT.zip TensorRT CPU, Nvidia GPU CUDA 11 , cuDNN and TensorRT libraries Experimental