I am trying to use a local setup of Weaviate without a specified vectorizer as I would prefer to generate my own embeddings. I am using the v4 Python client and running into an issue. Here is my reproducible example:
In this code chunk I am unable to retrieve the model (I get stuck on the line with model = …). However, if I move the model chunk above the weaviate client chunk, it works as intended. I am not sure what could be the issue here and I would appreciate some help.
Hi @DudaNogueira, thanks for the info. I am aware of this, but for our use case we are using some of our own fine-tuned models (that also use the sentence_transformers library) and would like to keep the two separate.
I have a similar requirement and I understood the resolution you shared. However, I was wondering if it would be easier to just change the model path to the fine-tuned model (given that I am fine-tuning a sentence transformer model) in the Docker Compose YAML file. This is probably not implemented as far as I can tell from looking at the codebase, but I was wondering if it would be feasible and what the pros and cons would be.