summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/integration
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-05-16 13:51:24 +0200
committerJon Bratseth <bratseth@gmail.com>2022-05-16 13:51:24 +0200
commita37ed1c28091f234f25c9b3649999821eb7f4802 (patch)
tree84d6f2c96e21bb8304f04e38f002869bbfbf394d /config-model/src/test/integration
parent1d63b5d81c057a8fe99812be22abac38c8195241 (diff)
Support addiong models in rank profiles
Diffstat (limited to 'config-model/src/test/integration')
-rw-r--r--config-model/src/test/integration/onnx-model/schemas/test.sd15
1 files changed, 7 insertions, 8 deletions
diff --git a/config-model/src/test/integration/onnx-model/schemas/test.sd b/config-model/src/test/integration/onnx-model/schemas/test.sd
index a15714767ba..82872758dd9 100644
--- a/config-model/src/test/integration/onnx-model/schemas/test.sd
+++ b/config-model/src/test/integration/onnx-model/schemas/test.sd
@@ -21,14 +21,6 @@ search test {
output "path/to/output:0": out
}
- onnx-model another_model {
- file: files/model.onnx
- input first_input: attribute(document_field)
- input "second/input:0": constant(my_constant)
- input "third_input": another_function
- output "path/to/output:2": out
- }
-
onnx-model dynamic_model {
file: files/dynamic_model.onnx
input input: my_function
@@ -72,6 +64,13 @@ search test {
first-phase {
expression: 1
}
+ onnx-model another_model {
+ file: files/model.onnx
+ input first_input: attribute(document_field)
+ input "second/input:0": constant(my_constant)
+ input "third_input": another_function
+ output "path/to/output:2": out
+ }
summary-features {
onnx(another_model).out
onnx("files/summary_model.onnx", "path/to/output:2")