Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
namespace StabilityMatrix.Avalonia.Models.Inference;
|
|
|
|
|
|
|
|
[JsonSerializable(typeof(SamplerCardModel))]
|
|
|
|
public class SamplerCardModel
|
|
|
|
{
|
|
|
|
public int Steps { get; init; }
|
|
|
|
|
|
|
|
public bool IsDenoiseStrengthEnabled { get; init; } = false;
|
|
|
|
public double DenoiseStrength { get; init; }
|
|
|
|
|
|
|
|
public bool IsCfgScaleEnabled { get; init; } = true;
|
|
|
|
public double CfgScale { get; init; }
|
|
|
|
|
|
|
|
public bool IsScaleSizeMode { get; init; }
|
|
|
|
public int Width { get; init; }
|
|
|
|
public int Height { get; init; }
|
|
|
|
|
|
|
|
public double Scale { get; init; }
|
|
|
|
|
|
|
|
public bool IsSamplerSelectionEnabled { get; init; } = true;
|
|
|
|
public string? SelectedSampler { get; init; }
|
|
|
|
}
|