Spaces:
Runtime error
Runtime error
robertselvam
commited on
Commit
•
ffcb5e4
1
Parent(s):
c3dee82
Update app.py
Browse files
app.py
CHANGED
@@ -117,7 +117,7 @@ class ResumeAnalyser:
|
|
117 |
with gr.Column(elem_id="col-container"):
|
118 |
pass
|
119 |
with gr.Row():
|
120 |
-
with gr.Column(scale=0.45, min_width=150
|
121 |
jobDescription = gr.File(label="Job Description")
|
122 |
with gr.Column(scale=0.45, min_width=150):
|
123 |
resume = gr.File(label="Resume")
|
@@ -135,9 +135,9 @@ class ResumeAnalyser:
|
|
135 |
with gr.Row():
|
136 |
with gr.Column(scale=1.0, min_width=150):
|
137 |
pychart = gr.Plot(label="Matching Percentage Chart")
|
138 |
-
|
139 |
|
140 |
-
|
141 |
|
142 |
resume=ResumeAnalyser()
|
143 |
resume.gradio_interface()
|
|
|
117 |
with gr.Column(elem_id="col-container"):
|
118 |
pass
|
119 |
with gr.Row():
|
120 |
+
with gr.Column(scale=0.45, min_width=150):
|
121 |
jobDescription = gr.File(label="Job Description")
|
122 |
with gr.Column(scale=0.45, min_width=150):
|
123 |
resume = gr.File(label="Resume")
|
|
|
135 |
with gr.Row():
|
136 |
with gr.Column(scale=1.0, min_width=150):
|
137 |
pychart = gr.Plot(label="Matching Percentage Chart")
|
138 |
+
analyse.click(self.matching_percentage, [jobDescription, resume], [perncentage,reason,skills,keywords,pychart])
|
139 |
|
140 |
+
app.launch()
|
141 |
|
142 |
resume=ResumeAnalyser()
|
143 |
resume.gradio_interface()
|