From 9692758c8b6ddb0b98e399c693830c58d44982de Mon Sep 17 00:00:00 2001 From: Ionite Date: Tue, 6 Jun 2023 02:27:47 -0400 Subject: [PATCH] Add `bin` as supported model ext --- StabilityMatrix/Models/CheckpointFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StabilityMatrix/Models/CheckpointFile.cs b/StabilityMatrix/Models/CheckpointFile.cs index ad83f1ad..0a80b117 100644 --- a/StabilityMatrix/Models/CheckpointFile.cs +++ b/StabilityMatrix/Models/CheckpointFile.cs @@ -39,7 +39,7 @@ public partial class CheckpointFile : ObservableObject public string FileName => Path.GetFileName(FilePath); - private static readonly string[] SupportedCheckpointExtensions = { ".safetensors", ".pt", ".ckpt", ".pth" }; + private static readonly string[] SupportedCheckpointExtensions = { ".safetensors", ".pt", ".ckpt", ".pth", "bin" }; private static readonly string[] SupportedImageExtensions = { ".png", ".jpg", ".jpeg" }; partial void OnConnectedModelChanged(ConnectedModelInfo? value)