Kailuo
Kailuo
When I try to use bigdl TransformersEmbeddings, I encounter a wired problem **Code** ```python self.embeddings = TransformersEmbeddings.from_model_id(model_id=f"../checkpoints/{self.embed_version}") self.embeddings.encode_kwargs = {"truncation": True, "max_length": 512, "padding": True} self.vectorstore_en = FAISS.from_texts(en_texts, self.embeddings, metadatas=[{"video_clip":...
## Description In the source code, the **"encode_kwargs"** parameter doesn't play the role it should play, resulting in that user cannot control the tokenizer encoding process. According to the source...
First of all, I would like to express my gratitude for your work, the tag2text model has helped me a lot. But when I try to use this model in...