SaymanDotNet
Results
1
issues of
SaymanDotNet
Hello. I have simple code: ``` using HPPH; using StableDiffusion.NET; using DiffusionModel model = ModelBuilder.StableDiffusion(@"G:\path_to_checkpoints\jamJustAnotherMerge_v20bBakedvaePruned.safetensors") .WithMultithreading() .Build(); string prompt = "cat"; IImage image = model .TextToImage(prompt, model .GetDefaultParameter() .WithSteps(30) .WithCfg(8.0f)...