summaryrefslogtreecommitdiffstats
path: root/indexinglanguage
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #29667 from vespa-engine/jobergum/splade-embedderJo Kristian Bergum2024-01-042-11/+66
|\ | | | | Add SPLADE embedder
| * Add test coverage of mapped tensor in indexing embedJo Kristian Bergum2023-12-191-6/+61
| |
| * Allow mapped 1d tensor for embed expressionsJo Kristian Bergum2023-12-171-5/+5
| |
* | Enable setting max-occurrences in field match.Tor Egge2024-01-044-0/+20
|/
* If we index the original in addition to stems, lowercase itJon Bratseth2023-11-202-5/+6
|
* Revert "Merge pull request #29328 from ↵Jon Bratseth2023-11-145-68/+83
| | | | | | | vespa-engine/revert-29314-bratseth/casing-take-2" This reverts commit a72e949533a46d665440a9c72ca2b8fb58f3a9c3, reversing changes made to 944d635d00e165166508ef23399e9ed65a87a9c8.
* Revert "Bratseth/casing take 2"Harald Musum2023-11-135-83/+68
|
* CleanupJon Bratseth2023-11-102-5/+1
|
* Prefer first stem to original if non equalJon Bratseth2023-11-103-47/+65
|
* Revert "Revert "Don't lowercase linguistics annotations""Jon Bratseth2023-11-094-23/+24
| | | | This reverts commit 0dfd4fe4c6ddbded490da36e71f27c4b70aa4226.
* Revert "Don't lowercase linguistics annotations"Jon Bratseth2023-11-094-24/+23
|
* Test that casing is preservedJon Bratseth2023-11-091-3/+3
|
* Don't lowercase linguistics annotationsJon Bratseth2023-11-094-21/+22
| | | | | | Tokens are already lowercased by our bundled linguistics components. Lowercasing again when annotating precludes plugging in a lingustics component which preserves casing.
* Take config to mean number of code points in match max lengthjonmv2023-10-201-1/+1
|
* Avoid cutting surrogate pairs when tokenisingjonmv2023-10-201-1/+2
|
* Non-functional changes onlyJon Bratseth2023-10-181-3/+3
|
* Update copyrightJon Bratseth2023-10-09196-195/+196
|
* Repair parserJon Bratseth2023-09-271-1/+0
|
* Return the expected outputJon Bratseth2023-09-2789-372/+369
| | | | | | | | | | | In if-else expressions, return the output of the executed branch rather than the input. The current behavior was undocumented and quite unexpected, so I suggest we treat that as a bug. Also return the last executed expression in a script as its output (rather than nothing. In addition, improve some error messages.
* - Add utility to do substring extraction by codepoints, instead of java ↵Henning Baldersheim2023-09-152-12/+6
| | | | | | char index. - Test and use it in SubstringExpression in indeing language.
* Merge pull request #27969 from vespa-engine/bjorncs/embedder-metricsJon Bratseth2023-08-311-1/+1
|\ | | | | Add generic metrics for embedders
| * Add generic metrics for embeddersBjørn Christian Seime2023-08-041-1/+1
| |
* | remove test duplicateJo Kristian Bergum2023-08-161-6/+0
| |
* | Add support for converting iso-8601 date strings to epoch timeJo Kristian Bergum2023-08-163-0/+116
|/
* Resolve parent before childrenJon Bratseth2023-04-143-2/+27
|
* Update ↵Henning Baldersheim2023-04-121-1/+1
| | | | | indexinglanguage/src/main/java/com/yahoo/vespa/indexinglanguage/expressions/Expression.java Co-authored-by: Geir Storli <geirst@yahooinc.com>
* Replace reflection by visitorJon Bratseth2023-03-3117-149/+113
|
* More understandable errors, and implement inner convertJon Bratseth2023-03-313-1/+34
|
* Retrieve execution value explicitly by '_'Jon Bratseth2023-03-243-0/+101
|
* Handle missing valuesJon Bratseth2023-02-072-5/+13
|
* Deprecate xml methodsHenning Baldersheim2023-01-275-0/+5
|
* Support embedding an array to a mixed 2d tensorJon Bratseth2023-01-272-9/+93
|
* Validate rank profiles earlyJon Bratseth2023-01-251-1/+1
|
* Replace synchronized Stack with Deque in feed and query path.Henning Baldersheim2023-01-251-4/+5
|
* Improve error messagesJon Bratseth2023-01-231-2/+2
|
* Add headersJon Bratseth2023-01-232-0/+2
|
* Skip statements on partial updates onlyJon Bratseth2023-01-236-4/+26
|
* More testsJon Bratseth2023-01-202-14/+47
|
* Support choice expressionsJon Bratseth2023-01-2014-65/+205
|
* Cleanup - no functional changesJon Bratseth2023-01-207-93/+82
|
* Cleanup - no functional chngesJon Bratseth2023-01-197-48/+27
|
* Expect the correction exceptionsJon Bratseth2023-01-192-3/+3
|
* Cleanup - no functional chngesJon Bratseth2023-01-1948-171/+116
|
* Improve testJon Bratseth2023-01-091-23/+37
|
* Revert "Revert collect(Collectors.toList())"Henning Baldersheim2022-12-041-1/+1
|
* Revert collect(Collectors.toList())Henning Baldersheim2022-12-041-1/+1
|
* collect(Collectors.toList()) -> toList()Henning Baldersheim2022-12-021-1/+1
|
* Merge pull request #24007 from vespa-engine/bratseth/cleanup-082Jon Bratseth2022-09-251-15/+12
|\ | | | | No functional changes
| * No functional changesJon Bratseth2022-09-111-15/+12
| |
* | Short circuit boolean expressionsJon Bratseth2022-09-211-13/+7
| | | | | | | | | | | | | | | | Short circuit boolean expressions by converting them to (nested) if expressions. This also fixes a bug in Java expression evaluation where evaluation of arithmetic operations with the same precedence would be from right to left rather than left to right.