Downloads · 30 days
70
33% of all-time downloads
YY99/resume_jd_classification
resume_jd_classification is a sentence similarity model from YY99. Use it when you need a score for how close two texts are. It is set up for sentence-transformers.
Downloads · 30 days
70
33% of all-time downloads
All-time downloads
211
Public
Parameters
22.7M
272 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors182 MB · 50%
From the Hugging Face model README
loss: 0.73513263463974
runtime: 137.1346
samples_per_second: 9.108
steps_per_second: 0.576
: 3.0
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the Hugging Face Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
'search_query: autotrain',
'search_query: auto train',
'search_query: i love autotrain',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)