Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -58,9 +58,10 @@ 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 |
|
62 |
-
|
63 |
-
iface = gr.Interface(
|
64 |
sent_similarity,
|
65 |
[input_1, input_2], "label")
|
66 |
|
|
|
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 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 |
|