No model found error

#80
by huggit0000 - opened

Hi, I'm trying to use the model offline. I downloaded the models, both , restructured models--jinaai--jina-embeddings-v3 and models--jinaai--xlm-roberta-flash-implementation, and added config.json with model_type.

It works for transformers , but gives an error for sentence_transformers:

from sentence_transformers import SentenceTransformer

model = SentenceTransformer("/home//.cache/huggingface/models--jinaai--jina-embeddings-v3", trust_remote_code=True)

import json

# Path to your config.json file
config_path = "/home//.cache/huggingface/models--jinaai--jina-embeddings-v3/config.json"

# Load the config file
with open(config_path, "r") as config_file:
   config = json.load(config_file)

# Check if the 'task_instructions' key exists
task_instructions = config.get('task_instructions', {})

# Print the loaded task instructions
print(task_instructions)



task = "retrieval.query"
embeddings = model.encode(
   ["What is the weather like in Berlin today?"],
   task=task,
   prompt_name=task,
)
No sentence-transformers model found with name /home//.cache/huggingface/models--jinaai--jina-embeddings-v3. Creating a new one with mean pooling.
{'retrieval.query': 'Represent the query for retrieving evidence documents: ', 'retrieval.passage': 'Represent the document for retrieval: ', 'separation': '', 'classification': '', 'text-matching': ''}
Traceback (most recent call last):
  File "/home//miniconda3/lib/python3.12/site-packages/sentence_transformers/SentenceTransformer.py", line 534, in encode
    prompt = self.prompts[prompt_name]
             ~~~~~~~~~~~~^^^^^^^^^^^^^
KeyError: 'retrieval.query'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home//mycode/jina_sentence_trnasformer.py", line 23, in <module>
    embeddings = model.encode(
                 ^^^^^^^^^^^^^
  File "/home//miniconda3/lib/python3.12/site-packages/sentence_transformers/SentenceTransformer.py", line 536, in encode
    raise ValueError(
ValueError: Prompt name 'retrieval.query' not found in the configured prompts dictionary with keys [].

Any guidance would be appreciated.

Hello!
Does your model directory (/home//.cache/huggingface/models--jinaai--jina-embeddings-v3) contain a config_sentence_transformers.json file? (https://huggingface.co/jinaai/jina-embeddings-v3/blob/main/config_sentence_transformers.json)

This should be used to load the prompts, i.e. the one with the key "retrieval.query" in your case. This prompt wasn't loaded, resulting in your crash.

  • Tom Aarsen

@tomaarsen Thanks for your quick reply! No, I didn't move that one. While I'm moving, can you tell me any other files I should relocate so that I can use the full features?

.
โ”œโ”€โ”€ config.json
โ”œโ”€โ”€ jinaai
โ”‚   โ””โ”€โ”€ xlm-roberta-flash-implementation
โ”‚   โ”œโ”€โ”€ block.py
โ”‚   โ”œโ”€โ”€ configuration_xlm_roberta.py
โ”‚   โ”œโ”€โ”€ embedding.py
โ”‚   โ”œโ”€โ”€ mha.py
โ”‚   โ”œโ”€โ”€ mlp.py
โ”‚   โ”œโ”€โ”€ modeling_lora.py
โ”‚   โ”œโ”€โ”€ modeling_xlm_roberta.py
โ”‚   โ”œโ”€โ”€ rotary.py
โ”‚   โ”œโ”€โ”€ stochastic_depth.py
โ”‚   โ””โ”€โ”€ xlm_padding.py
โ”œโ”€โ”€ model.safetensors
โ”œโ”€โ”€ special_tokens_map.json
โ”œโ”€โ”€ tokenizer.json
โ””โ”€โ”€ tokenizer_config.json

My recommendation is to:

  1. Clone this repository (https://huggingface.co/jinaai/jina-embeddings-v3/blob/main/config_sentence_transformers.json?clone=true) to get all files
  2. Copy all files from the implementation repository into the local directory, i.e. adjacent to the model.safetensors etc.
  3. Update the config.json (from the jina-embeddings-v3) cloning and turn the "auto_map" values from "jinaai/xlm-roberta-flash-implementation--file.class" into just "file.class". Because the files are adjacent, it'll be able to find it.

Then you can load the model by providing the path to the directory that you cloned into. Then you only have 1 directory with everything in it (it does have some necessary subdirectories)

Beyond that, this ensures that you have all files and that your performance should be the same as the remote model. But you're free to test with some arbitrary texts to make sure the embeddings are the same.

  • Tom Aarsen

Hi Tom @tomaarsen , Thank you so much. I rearranged as you guided and It works fine ๐Ÿ™

If you don't mind, can you give me some follow-ups?

  1. I couldn't find Lora adapter files, which seems to be merged in safetensors. My idea is fine-tuning over the Lora Adapter. Do you have any idea?
  2. I'm a bit concerned that my finetuing could overfit, so can you guide a miminum size of dataset that doesn't hurt the performance?
  3. Is Matryoshka embedding ionly enabled when I set truncate_dim=, or just default on ?

Sign up or log in to comment