summaryrefslogtreecommitdiffstats
path: root/model-integration/pom.xml
Commit message (Collapse)AuthorAgeFilesLines
* Llm completion abstraction and OpenAi implementationJon Bratseth2023-04-191-0/+17
|
* Add lz4-java for xxhashBjørn Christian Seime2023-03-311-0/+5
|
* Revert "Deopend on component to get AbstractComponent"Bjørn Christian Seime2023-02-281-6/+0
|
* Deopend on component to get AbstractComponentJon Bratseth2023-02-281-0/+6
|
* Replace `OnnxEvaluatorCache` with OnnxRuntimeBjørn Christian Seime2023-02-271-0/+6
| | | | | | Require an `OnnxRuntime` instance to create `OnnxEvaluator` instances. Cache underlying `OrtSession` instead of `OnnxEvaluator`. Move static helpers for checking Onnx runtime availability from `OnnxEvaluator` to `OnnxRuntime`.
* Cache Onnx model instancesBjørn Christian Seime2023-02-221-0/+15
| | | | | | Manage lifecycle of OnnxEvaluator instances explicitly to allow instances to be cached without use WeakHashmap/finalizers. Inject shared Onnx model cache in ModelsEvaluator.
* Add JNA in lib/jars + export as packages from jdisc_coreBjørn Christian Seime2023-01-201-1/+21
| | | | Jdisc-core will embed JNA. The JNA in lib/jars is used by fatjars only.
* Exclude in fat-depsJon Bratseth2023-01-091-1/+4
|
* Huggingface not needed in config modelJon Bratseth2023-01-091-0/+1
|
* Allow model-integration:huggingface dependenciesJon Bratseth2023-01-061-0/+6
|
* DJL-based HuggingFaceEmbedder prototypeAndrii Yurkiv2023-01-041-0/+6
|
* rename to just "container-onnxruntime"Arne Juul2022-12-021-1/+1
|
* add container-onnxruntime-bundleArne Juul2022-12-021-3/+5
|
* Revert "Revert "- Reduce usage of guava.""Henning Baldersheim2022-12-011-12/+11
|
* Revert "- Reduce usage of guava."Henning Baldersheim2022-12-011-11/+12
|
* - Reduce usage of guava.Henning Baldersheim2022-12-011-12/+11
| | | | - Ensure that tests relying on order are determinsitic.
* Set project version to 8-SNAPSHOTgjoranv2022-06-081-2/+2
|
* Revert "Revert "Add bert base embedder""Lester Solbakken2022-04-011-0/+12
| | | | This reverts commit 80556883dcdc350e2b5cfebde8ef482baeb36872.
* Revert "Add bert base embedder"Håkon Hallingstad2022-03-311-12/+0
|
* Add bert base embedderLester Solbakken2022-03-311-0/+12
|
* unify java warnings (use compiler args from parent)Arne H Juul2022-01-071-11/+0
|
* Update 2018 copyright notices.gjoranv2021-10-071-1/+1
|
* Remove Java dependencies to tensorflowLester Solbakken2021-10-041-8/+0
|
* Remove profile for rhel6 workaround.Arnstein Ressem2021-09-221-25/+0
|
* Revert "Revert "Add ONNX-RT evaluator to model-integration module""Lester Solbakken2021-05-191-0/+4
| | | | This reverts commit 97080252fac0ba45b58f9d0efb56603da518428f.
* Revert "Add ONNX-RT evaluator to model-integration module"Lester Solbakken2021-05-191-4/+0
|
* Add ONNX-RT evaluator to model-integration moduleLester Solbakken2021-05-191-0/+4
|
* Support native Vespa standalone modelsJon Bratseth2019-05-311-2/+10
|
* Search over protobuf + jrtOlli Virtanen2019-03-191-16/+0
|
* Revert "Protobuf over jrt support in search"Henning Baldersheim2019-03-151-0/+16
|
* Protobuf over jrt support in searchOlli Virtanen2019-03-111-16/+0
|
* Upgrade to latest version of protoc-jar-maven-pluginHarald Musum2019-01-291-1/+1
|
* Set 7-SNAPSHOT for new modules.gjoranv2019-01-211-2/+2
|
* Revert "Revert "Enable ABI checking on modules with public APIs""Ilpo Ruotsalainen2019-01-091-0/+4
| | | | This reverts commit cd470d8ac8a58c943748f028a37d864507628e99.
* Revert "Enable ABI checking on modules with public APIs"Håkon Hallingstad2019-01-041-4/+0
|
* Move abi-check-plugin configuration to parent.Ilpo Ruotsalainen2018-12-211-12/+0
| | | | | Instead of configuring in each module separately, put all configuration to parent and let the relevant modules just enable the plugin.
* Enable abi-check-plugin on relevant modules.Ilpo Ruotsalainen2018-12-181-0/+16
|
* Upgrade protoc jar maven plugin versionLester Solbakken2018-12-041-1/+1
|
* Model the config model view of model-integrationJon Bratseth2018-11-261-0/+6
| | | | | This is to make it clearer that these methods are part of the config model API.
* Optionally exclude TF JNIJon Bratseth2018-11-231-0/+26
|
* Move all importing to model-integrationJon Bratseth2018-11-221-3/+5
|
* Separate model integration into a separate moduleJon Bratseth2018-11-211-0/+100
This allows us to access model importers (such as TensorFlow) in config models without loading one instance per config model instance, which is not possible with TensorFlow because it depends on JNI code.