diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-01-29 12:00:04 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-01-29 12:00:04 +0300 |
commit | 60aa15ff43caaae40279018dcdbacb26dbeaabe2 (patch) | |
tree | be8c9ee8bed57f96b14198f76a171aa829d27624 | |
parent | 8183577ff6bf5798f8edea9cbd90957c483d327f (diff) |
Reduce LogLossReduction
-rw-r--r-- | RhSolutions.ML.Tests/ModelTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RhSolutions.ML.Tests/ModelTests.cs b/RhSolutions.ML.Tests/ModelTests.cs index c31b774..436f2e6 100644 --- a/RhSolutions.ML.Tests/ModelTests.cs +++ b/RhSolutions.ML.Tests/ModelTests.cs @@ -19,6 +19,6 @@ public class ModelTests Assert.That(testMetrics.MicroAccuracy, Is.AtLeast(0.95)); Assert.That(testMetrics.MacroAccuracy, Is.AtLeast(0.95)); Assert.That(testMetrics.LogLoss, Is.AtMost(0.2)); - Assert.That(testMetrics.LogLossReduction, Is.AtLeast(0.95)); + Assert.That(testMetrics.LogLossReduction, Is.AtLeast(0.80)); } }
\ No newline at end of file |