Spaces:
Sleeping
Sleeping
Pradeep Kumar
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -100,8 +100,11 @@ def launch(input):
|
|
100 |
|
101 |
print("Most likely ISCO code is {} and probability is {}".format(decoded_labels,highest_probabilities))
|
102 |
|
103 |
-
# Gradio Interface
|
104 |
-
iface = gr.Interface(fn=launch,inputs=gr.inputs.Textbox(lines=2, placeholder="Enter job title and description here..."),outputs="text")
|
105 |
|
106 |
-
|
|
|
|
|
|
|
|
|
|
|
107 |
iface.launch()
|
|
|
100 |
|
101 |
print("Most likely ISCO code is {} and probability is {}".format(decoded_labels,highest_probabilities))
|
102 |
|
|
|
|
|
103 |
|
104 |
+
iface = gr.Interface(
|
105 |
+
fn=launch,
|
106 |
+
inputs=gr.Textbox(lines=2, placeholder="Enter job title and description here..."),
|
107 |
+
outputs="text"
|
108 |
+
)
|
109 |
+
|
110 |
iface.launch()
|