You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: en/applications/unit-testing.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ <h2 id="unit-testing-using-application">Unit testing using Application</h2>
20
20
the test through <ahref="https://javadoc.io/page/com.yahoo.vespa/application/latest/com/yahoo/application/Application.html#getJDisc-java.lang.String-">app.getJDisc(clusterName)</a> -
21
21
this class has methods for using all common <ahref="../reference/applications/components.html">component types</a>.
22
22
</p><p>
23
-
Refer to <ahref="https://github.com/vespa-engine/sample-apps/blob/master/album-recommendation-java/src/test/java/ai/vespa/example/album/MetalSearcherTest.java">
23
+
Refer to <ahref="https://github.com/vespa-engine/sample-apps/blob/master/album-recommendation-java/app/src/test/java/ai/vespa/example/album/MetalSearcherTest.java">
24
24
MetalSearcherTest.java</a> for example use.
25
25
Notice how the test disables the network layer in order to run tests in parallel.
Copy file name to clipboardExpand all lines: en/examples/billion-scale-image-search.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,14 +88,14 @@ or self-hosted on-premise.
88
88
## Stateless Components
89
89
The app contains several [container components](../applications/components.html):
90
90
91
-
-[RankingSearcher](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/src/main/java/ai/vespa/examples/searcher/RankingSearcher.java) implements the last stage ranking using
91
+
-[RankingSearcher](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/app/src/main/java/ai/vespa/examples/searcher/RankingSearcher.java) implements the last stage ranking using
92
92
full-precision vectors using an ONNX model for accelerated inference.
93
-
-[DedupingSearcher](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/src/main/java/ai/vespa/examples/searcher/DeDupingSearcher.java) implements run-time de-duping after Ranking, using
93
+
-[DedupingSearcher](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/app/src/main/java/ai/vespa/examples/searcher/DeDupingSearcher.java) implements run-time de-duping after Ranking, using
94
94
document to document similarity matrix, using an ONNX model for accelerated inference.
95
-
-[DimensionReducer](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/src/main/java/ai/vespa/examples/DimensionReducer.java) PCA dimension reducing vectors from 768-dims to 128-dims.
96
-
-[AssignCentroidsDocProc](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/src/main/java/ai/vespa/examples/docproc/AssignCentroidsDocProc.java) searches the HNSW graph content cluster
95
+
-[DimensionReducer](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/app/src/main/java/ai/vespa/examples/DimensionReducer.java) PCA dimension reducing vectors from 768-dims to 128-dims.
96
+
-[AssignCentroidsDocProc](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/app/src/main/java/ai/vespa/examples/docproc/AssignCentroidsDocProc.java) searches the HNSW graph content cluster
97
97
during ingestion to find the nearest centroids of the incoming vector.
For Vespa cloud deployments to the [dev env](../operations/zones.html)
236
-
replace the [src/main/application/services.xml](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/src/main/application/services.xml) with
replace the [src/main/application/services.xml](https://github.com/vespa-engine/sample-apps/tree/master/billion-scale-image-search/qpp/src/main/application/services.xml) with
0 commit comments