update installer

This commit is contained in:
Alex Bezdieniezhnykh
2025-03-09 11:22:11 +02:00
parent 4e6624ee58
commit f26b5ac8a2
5 changed files with 11 additions and 186 deletions
+2 -2
View File
@@ -188,8 +188,8 @@ public class YoloLabel : Label
[MessagePackObject]
public class Detection : YoloLabel
{
[Key("an")] public string AnnotationName { get; set; } = null!;
[Key("p")] public double? Probability { get; set; }
[JsonProperty(PropertyName = "an")][Key("an")] public string AnnotationName { get; set; } = null!;
[JsonProperty(PropertyName = "p")][Key("p")] public double? Probability { get; set; }
//For db & serialization
public Detection(){}