rexoscare commited on
Commit
55e2018
·
1 Parent(s): 5f8205e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -59,11 +59,11 @@ input_1 = gr.inputs.File(file_count="single", type="file", label= 'Upload the Re
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 the sentence similarity model do its magic."
63
 
64
- iface = gr.Interface(title = title, description = description,
65
  sent_similarity,
66
- [input_1, input_2], "label")
67
 
68
  if __name__ == "__main__":
69
  iface.launch()
 
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,
66
+ [input_1, input_2], "label", title = title, description = description)
67
 
68
  if __name__ == "__main__":
69
  iface.launch()