David Kyle
David Kyle
Support for RoBERTa models was added to Elasticsearch in 8.2 https://github.com/elastic/elasticsearch/pull/84777
There are 2 models in Clip, the image processing model and a text embedding model. Elastic does not support image processing models but if you want to use the text...
@elasticmachine update branch
@elasticmachine update branch
The failure is due to the missing file [sentencepiece.bpe.model](https://huggingface.co/FacebookAI/xlm-roberta-base/blob/main/sentencepiece.bpe.model). The error is easy to reproduce with `AutoTokenizer.from_pretrained` using the slow tokenizer: ```Python import transformers tokenizer = transformers.AutoTokenizer.from_pretrained('osiria/minilm-l12-h384-italian-cased', use_fast=False) ``` Returns...
Thanks for the stack trace. When Eland is used to import the model it runs a test evaluation to measure the size of the embedding produced by the model. This...
There are 4 test classes with the name RestSqlIT - org.elasticsearch.xpack.sql.qa.security.RestSqlIT - org.elasticsearch.xpack.sql.qa.multi_cluster_with_security.RestSqlIT - org.elasticsearch.xpack.sql.qa.single_node.RestSqlIT - org.elasticsearch.xpack.sql.qa.multi_node.RestSqlIT All have had failures in the last 7 days apart from `org.elasticsearch.xpack.sql.qa.multi_node.RestSqlIT` https://build-stats.elastic.co/app/kibana#/discover?_g=h@33d9122&_a=h@19cd33a...
Another failure https://gradle-enterprise.elastic.co/s/ouamdof7kcboi/tests/:x-pack:plugin:transform:test/org.elasticsearch.xpack.transform.transforms.TransformIndexerStateTests/testStopAtCheckpoint
Another one with the same `Expected: but: was ` error https://gradle-enterprise.elastic.co/s/jhclh54htqkwc/tests/task/:x-pack:plugin:transform:test/details/org.elasticsearch.xpack.transform.transforms.TransformIndexerStateTests/testStopAtCheckpoint?top-execution=1
The Rank Feature query which can also be used on a `rank_features` field has better behaviour. Querying on a field mapped to a different type returns an error. In this...