aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/renamedfeatures/foo.sd
blob: ad763098d516db7312dee9bbd77e4b7046a689b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema foo {

  document foo {
    field title type string {
      indexing: summary | index
    }
    field year type int {
      indexing: attribute
    }
    field foo1 type double {
      indexing: attribute
    }
    field foo2 type double {
      indexing: attribute
    }
    field bar1 type double {
      indexing: attribute
    }
    field bar2 type double {
      indexing: attribute
    }
    field t1 type tensor(m{},v[3]) {
      indexing: attribute
    }
  }

  rank-profile default {
      function myplus() {
        expression: attribute(foo1)+attribute(foo2)
      }
      function mymul() {
        expression: attribute(t1)*query(fromq)
      }
      first-phase {
        expression: classicRank
      }
      rank-features: attribute(foo1).out attribute(bar1)
      rank-features { myplus mymul }
      ignore-default-rank-features
  }

  rank-profile withsf {
      function myplus() {
        expression: attribute(foo1)+attribute(foo2)
      }
      function mymul() {
        expression: attribute(t1)*query(fromq)
      }
      first-phase {
        expression { attribute(year) }
      }
      summary-features: attribute(foo1).out attribute(bar1)
      summary-features {
        myplus
        rankingExpression(mymul)
      }
  }

  rank-profile withmf {
      function myplus() {
        expression: attribute(foo1)+attribute(foo2)
      }
      function mymul() {
        expression: attribute(t1)*query(fromq)
      }
      first-phase {
        expression: attribute(foo1)
      }
      second-phase {
        expression: attribute(foo2)
      }
      match-features: attribute(foo1).out attribute(bar1)
      match-features {
        rankingExpression(myplus)
        mymul
        firstPhase
        secondPhase
      }
  }

}