From 526e622f8c56e3cfa25aed1c1a8c7d4aeb7b398b Mon Sep 17 00:00:00 2001 From: Ralph Gasser Date: Thu, 5 Dec 2024 09:12:56 +0100 Subject: [PATCH] Fixes a bug in field name. Signed-off-by: Ralph Gasser --- .../engine/core/model/descriptor/struct/LabelDescriptor.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitrivr-engine-core/src/main/kotlin/org/vitrivr/engine/core/model/descriptor/struct/LabelDescriptor.kt b/vitrivr-engine-core/src/main/kotlin/org/vitrivr/engine/core/model/descriptor/struct/LabelDescriptor.kt index c3eff9a9..caf485c0 100644 --- a/vitrivr-engine-core/src/main/kotlin/org/vitrivr/engine/core/model/descriptor/struct/LabelDescriptor.kt +++ b/vitrivr-engine-core/src/main/kotlin/org/vitrivr/engine/core/model/descriptor/struct/LabelDescriptor.kt @@ -23,7 +23,7 @@ class LabelDescriptor( companion object { const val LABEL_FIELD_NAME = "label" - const val CONFIDENCE_FIELD_NAME = "label" + const val CONFIDENCE_FIELD_NAME = "confidence" private val SCHEMA = listOf( Attribute(LABEL_FIELD_NAME, Type.String),