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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -55,7 +55,7 @@ def match(CV,JD):
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
 
 
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][1]
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