honeyangelhp commited on
Commit
ff564a1
·
verified ·
1 Parent(s): d1fdd60

Update ATS_score.py

Browse files
Files changed (1) hide show
  1. ATS_score.py +1 -6
ATS_score.py CHANGED
@@ -14,13 +14,8 @@ def calculateATSscore(resume_data, job_description):
14
 
15
  # Calculate cosine similarity
16
  similarity_value = cosine_similarity(vectors)
17
-
18
- # Print the raw similarity value
19
- print("Calculated ATS Score (raw):", similarity_value)
20
-
21
  # Return the ATS score rounded to two decimal places
22
  ats_score = round(similarity_value[0, 1], 2)
23
 
24
- print("Calculated ATS Score (rounded):", ats_score)
25
-
26
  return ats_score
 
14
 
15
  # Calculate cosine similarity
16
  similarity_value = cosine_similarity(vectors)
17
+
 
 
 
18
  # Return the ATS score rounded to two decimal places
19
  ats_score = round(similarity_value[0, 1], 2)
20
 
 
 
21
  return ats_score