rexoscare commited on
Commit
638e28f
·
1 Parent(s): 55e2018

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -58,8 +58,8 @@ def sent_similarity(filepath_1, filepath_2):
58
  input_1 = gr.inputs.File(file_count="single", type="file", label= 'Upload the Resume (.pdf)', optional=False)
59
  input_2 = gr.inputs.File(file_count="single", type="file", label= 'Upload the Job Description (.txt)', optional=False)
60
 
61
- title = "Automatic Resume Screening App"
62
- description = "Upload your resume(.pdf) and the job description(.txt) and let the sentence similarity model do its magic !!!"
63
 
64
  iface = gr.Interface(
65
  sent_similarity,
 
58
  input_1 = gr.inputs.File(file_count="single", type="file", label= 'Upload the Resume (.pdf)', optional=False)
59
  input_2 = gr.inputs.File(file_count="single", type="file", label= 'Upload the Job Description (.txt)', optional=False)
60
 
61
+ title = "Resume Screener"
62
+ description = "Upload your resume(.pdf) and the job description(.txt) and let the sentence similarity model display the similarity percentage !!!"
63
 
64
  iface = gr.Interface(
65
  sent_similarity,