cnamuangtoun/resume-job-description-fit
Viewer • Updated • 8k • 844 • 76
How to use Anandi99/Wright with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("Anandi99/Wright")
sentences = [
"The weather is lovely today.",
"It's so sunny outside!",
"He drove to the stadium."
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]Base model
openai-community/gpt2