Spaces:
Build error
Build error
Update app.py
Browse files
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(
|
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()
|