summaryrefslogtreecommitdiffstats
path: root/model-integration
diff options
context:
space:
mode:
authorLester Solbakken <lesters@oath.com>2020-05-06 11:21:13 +0200
committerLester Solbakken <lesters@oath.com>2020-05-06 11:21:13 +0200
commit6321c1f0abdaa04fa3aa3346eb37a09e6f27fcef (patch)
tree7d6c0d460591741166a0edf9871e1c616134975e /model-integration
parente0d728bc344dcc764455fa05aa1b6b67286a1e95 (diff)
Remove debug statement
Diffstat (limited to 'model-integration')
-rw-r--r--model-integration/src/main/java/ai/vespa/rankingexpression/importer/operations/Softmax.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/model-integration/src/main/java/ai/vespa/rankingexpression/importer/operations/Softmax.java b/model-integration/src/main/java/ai/vespa/rankingexpression/importer/operations/Softmax.java
index 5d9484ff0c8..e0b3629a263 100644
--- a/model-integration/src/main/java/ai/vespa/rankingexpression/importer/operations/Softmax.java
+++ b/model-integration/src/main/java/ai/vespa/rankingexpression/importer/operations/Softmax.java
@@ -40,7 +40,6 @@ public class Softmax extends IntermediateOperation {
TensorFunction input = inputs.get(0).function().get();
TensorFunction sum = new Reduce(input, Reduce.Aggregator.sum, reduceDimensions);
TensorFunction div = new Join(input, sum, ScalarFunctions.divide());
- System.out.println(div);
return div;
}