From f570641511d97844df79427c085444d1075bc20d Mon Sep 17 00:00:00 2001 From: Enkidu93 Date: Tue, 16 Jul 2024 14:34:16 -0400 Subject: [PATCH] Fix error message --- .../src/Serval.Machine.Shared/Services/PreprocessBuildJob.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Machine/src/Serval.Machine.Shared/Services/PreprocessBuildJob.cs b/src/Machine/src/Serval.Machine.Shared/Services/PreprocessBuildJob.cs index 214a1818..850d1b68 100644 --- a/src/Machine/src/Serval.Machine.Shared/Services/PreprocessBuildJob.cs +++ b/src/Machine/src/Serval.Machine.Shared/Services/PreprocessBuildJob.cs @@ -80,7 +80,7 @@ CancellationToken cancellationToken if (trainCount == 0 && (!sourceTagInBaseModel || !targetTagInBaseModel)) { throw new InvalidOperationException( - $"Neither language code in build {buildId} are known to the base model, and the data specified for training was empty. Build canceled." + $"At least one language code in build {buildId} is unknown to the base model, and the data specified for training was empty. Build canceled." ); }