summaryrefslogtreecommitdiffstats
path: root/linguistics/src/main/java/com/yahoo/language/sentencepiece/Scoring.java
diff options
context:
space:
mode:
Diffstat (limited to 'linguistics/src/main/java/com/yahoo/language/sentencepiece/Scoring.java')
-rw-r--r--linguistics/src/main/java/com/yahoo/language/sentencepiece/Scoring.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/linguistics/src/main/java/com/yahoo/language/sentencepiece/Scoring.java b/linguistics/src/main/java/com/yahoo/language/sentencepiece/Scoring.java
deleted file mode 100644
index 6c8560abee7..00000000000
--- a/linguistics/src/main/java/com/yahoo/language/sentencepiece/Scoring.java
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.language.sentencepiece;
-
-/**
- * The scoring strategy to use for picking segments
- *
- * @author bratseth
- */
-public enum Scoring {
-
- /** Find the segmentation that has the highest score */
- highestScore,
-
- /** Find the segmentation that has the fewest segments, resolve ties by score sum */
- fewestSegments
-
-}