Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -2,11 +2,9 @@ from flask import Flask, request, jsonify
|
|
2 |
from langchain_community.llms import LlamaCpp
|
3 |
from sentence_transformers import SentenceTransformer
|
4 |
from transformers import AutoTokenizer, AutoModel
|
5 |
-
|
6 |
-
|
7 |
import torch
|
8 |
-
from torch.nn.functional import cosine_similarity
|
9 |
-
import os
|
10 |
app = Flask(__name__)
|
11 |
|
12 |
n_gpu_layers = 0
|
@@ -52,21 +50,28 @@ def health():
|
|
52 |
@app.route('/compare', methods=['POST'])
|
53 |
def compare():
|
54 |
jobs_skills = request.json.get('jobs_skills')
|
55 |
-
|
56 |
-
|
57 |
-
#example: employee_skills = "<|assistant|> Certainly! Based on the provided information, here are the relevant skills listed in my CV:\n\n1. Python programming language proficiency\n2. Java development expertise\n3. Web development experience (including front-end and back-end technologies)\n4. Proficient with machine learning algorithms and frameworks\n5. Strong problem-solving abilities\n6. Excellent communication skills, both written and verbal\n7. Agile methodology adherence\n8. Familiarity with version control systems (e.g., Git)\n9. Experience in designing scalable software architectures\n10. Proficient in testing methodologies such as unit tests, integration tests, and end-to-end tests\n11. Continuous learning mindset to stay updated on the latest technological advancements\n12. Strong collaboration skills for effective teamwork\n\nThese skills enable me to contribute significantly to an employer's objectives by developing innovative features that leverage cutting-edge technology, optimizing software performance through efficient coding practices and algorithmic improvements, enhancing code quality with rigorous testing methodologies, and fostering a collaborative work environment""
|
58 |
if not isinstance(jobs_skills, list) or not all(isinstance(skill, str) for skill in jobs_skills):
|
59 |
raise ValueError("jobs_skills must be a list of strings")
|
60 |
-
|
|
|
|
|
61 |
employee_embeddings = model.encode(employee_skills)
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
if __name__ == '__main__':
|
72 |
-
app.run()
|
|
|
2 |
from langchain_community.llms import LlamaCpp
|
3 |
from sentence_transformers import SentenceTransformer
|
4 |
from transformers import AutoTokenizer, AutoModel
|
5 |
+
from sklearn.metrics.pairwise import cosine_similarity
|
6 |
+
from flask import Flask, request, jsonify
|
7 |
import torch
|
|
|
|
|
8 |
app = Flask(__name__)
|
9 |
|
10 |
n_gpu_layers = 0
|
|
|
50 |
@app.route('/compare', methods=['POST'])
|
51 |
def compare():
|
52 |
jobs_skills = request.json.get('jobs_skills')
|
53 |
+
employee_skills = request.json.get('employee_skills')
|
54 |
+
|
|
|
55 |
if not isinstance(jobs_skills, list) or not all(isinstance(skill, str) for skill in jobs_skills):
|
56 |
raise ValueError("jobs_skills must be a list of strings")
|
57 |
+
|
58 |
+
# Encode job and employee skills
|
59 |
+
job_embeddings = [model.encode(skill) for skill in jobs_skills]
|
60 |
employee_embeddings = model.encode(employee_skills)
|
61 |
+
|
62 |
+
# Calculate cosine similarity
|
63 |
+
similarities = []
|
64 |
+
employee_embedding_tensor = torch.tensor(employee_embeddings).unsqueeze(0)
|
65 |
+
for job_embedding in job_embeddings:
|
66 |
+
job_embedding_tensor = torch.tensor(job_embedding).unsqueeze(0)
|
67 |
+
similarity = cosine_similarity(employee_embedding_tensor, job_embedding_tensor)
|
68 |
+
similarities.append(similarity.item())
|
69 |
+
|
70 |
+
# Find the job with highest similarity
|
71 |
+
max_similarity_index = similarities.index(max(similarities))
|
72 |
+
max_similarity_job = jobs_skills[max_similarity_index]
|
73 |
+
|
74 |
+
return jsonify({'job': max_similarity_job, 'similarity': max(similarities)})
|
75 |
|
76 |
if __name__ == '__main__':
|
77 |
+
app.run())
|