abhibisht89 commited on
Commit
50cb333
1 Parent(s): 652b10f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -54,7 +54,8 @@ def match(CV,JD):
54
  skillset_dict = create_skillset_dict(resume_names, resume_texts)
55
  jd_skillset = create_skill_set(nlp(JD))
56
  match_pairs = [match_skills(jd_skillset, skillset_dict, name) for name in skillset_dict.keys()]
57
- return match_pairs
 
58
 
59
  exp=["Who is steve jobs?","What is coldplay?","What is a turing test?","What is the most interesting thing about our universe?","What are the most beautiful places on earth?"]
60
 
 
54
  skillset_dict = create_skillset_dict(resume_names, resume_texts)
55
  jd_skillset = create_skill_set(nlp(JD))
56
  match_pairs = [match_skills(jd_skillset, skillset_dict, name) for name in skillset_dict.keys()]
57
+
58
+ return match_pairs[0]
59
 
60
  exp=["Who is steve jobs?","What is coldplay?","What is a turing test?","What is the most interesting thing about our universe?","What are the most beautiful places on earth?"]
61