Spaces:
Runtime error
Runtime error
Commit
·
4f082f2
1
Parent(s):
dfa0f0e
Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ desc="A Machine Learning Based Resume Matcher, to compare Resumes with Job Descr
|
|
64 |
inp1=gr.inputs.Textbox(lines=10, placeholder=None, default="", label="Resume Details")
|
65 |
inp2=gr.inputs.Textbox(lines=10, placeholder=None, default="", label="Job Description")
|
66 |
|
67 |
-
out=gr.outputs.Textbox(type="auto",label="
|
68 |
|
69 |
iface = gr.Interface(fn=match, inputs=[inp1,inp2], outputs=out,title="CV matcher",article=desc,theme="huggingface",layout='vertical')
|
70 |
iface.launch(debug=True)
|
|
|
64 |
inp1=gr.inputs.Textbox(lines=10, placeholder=None, default="", label="Resume Details")
|
65 |
inp2=gr.inputs.Textbox(lines=10, placeholder=None, default="", label="Job Description")
|
66 |
|
67 |
+
out=gr.outputs.Textbox(type="auto",label="Match Score")
|
68 |
|
69 |
iface = gr.Interface(fn=match, inputs=[inp1,inp2], outputs=out,title="CV matcher",article=desc,theme="huggingface",layout='vertical')
|
70 |
iface.launch(debug=True)
|