summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/processing/RankingExpressionWithOnnxModelTestCase.java
diff options
context:
space:
mode:
authorLester Solbakken <lesters@oath.com>2020-09-02 16:23:19 +0200
committerLester Solbakken <lesters@oath.com>2020-09-02 16:23:19 +0200
commit2d66843825d1fcb698744b5c5191664ca21f2781 (patch)
tree0fd3dbe68ae2feae3e45d527f3c0962e6615df4f /config-model/src/test/java/com/yahoo/searchdefinition/processing/RankingExpressionWithOnnxModelTestCase.java
parentc80e560d472bb37643b0eadac9e4915b16d11f3d (diff)
Add test files for onnxModel unit test
Diffstat (limited to 'config-model/src/test/java/com/yahoo/searchdefinition/processing/RankingExpressionWithOnnxModelTestCase.java')
-rw-r--r--config-model/src/test/java/com/yahoo/searchdefinition/processing/RankingExpressionWithOnnxModelTestCase.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/config-model/src/test/java/com/yahoo/searchdefinition/processing/RankingExpressionWithOnnxModelTestCase.java b/config-model/src/test/java/com/yahoo/searchdefinition/processing/RankingExpressionWithOnnxModelTestCase.java
index 1ec82bb8c41..7e129410b37 100644
--- a/config-model/src/test/java/com/yahoo/searchdefinition/processing/RankingExpressionWithOnnxModelTestCase.java
+++ b/config-model/src/test/java/com/yahoo/searchdefinition/processing/RankingExpressionWithOnnxModelTestCase.java
@@ -15,16 +15,16 @@ import static org.junit.Assert.assertEquals;
public class RankingExpressionWithOnnxModelTestCase {
@Test
- public void testOnnxModelFeature() throws Exception {
+ public void testOnnxModelFeature() {
VespaModel model = new VespaModelCreatorWithFilePkg("src/test/integration/onnx-file").create();
DocumentDatabase db = ((IndexedSearchCluster)model.getSearchClusters().get(0)).getDocumentDbs().get(0);
- String modelName = OnnxModelTransformer.toModelName("other/mnist_softmax.onnx");
+ String modelName = OnnxModelTransformer.toModelName("files/simple.onnx");
// Ranking expression should be transformed from
- // onnxModel("other/mnist_softmax.onnx", "add")
+ // onnxModel("files/simple.onnx", "output")
// to
- // onnxModel(other_mnist_softmax_onnx).add
+ // onnxModel(files_simple_onnx).output
assertTransformedFeature(db, modelName);
assertGeneratedConfig(db, modelName);
@@ -45,7 +45,7 @@ public class RankingExpressionWithOnnxModelTestCase {
assertEquals(3, config.rankprofile().size());
assertEquals("my_profile", config.rankprofile(2).name());
assertEquals("vespa.rank.firstphase", config.rankprofile(2).fef().property(0).name());
- assertEquals("onnxModel(" + modelName + ").add", config.rankprofile(2).fef().property(0).value());
+ assertEquals("onnxModel(" + modelName + ").output", config.rankprofile(2).fef().property(0).value());
}
}