Spaces:
Build error
Build error
File size: 677 Bytes
d660b02 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from InstructorEmbedding import INSTRUCTOR
# Create virtual environment, install dependencies and run the code:
# 1. Create: python3 -m venv instructor_venv
# 2. Activate: source instructor_venv/bin/activate
# 3. Install: pip install sentence-transformers==2.2.2 InstructorEmbedding==1.0.1
# 4. Run the code: python code_snippets/08_instructor_embeddings.py
if __name__ == "__main__":
model = INSTRUCTOR("hkunlp/instructor-base")
sentence = "RAG Fundamentals First"
instruction = "Represent the title of an article about AI:"
embeddings = model.encode([[instruction, sentence]])
print(embeddings.shape) # noqa
# Output: (1, 768)
|