Pradeep Kumar commited on
Commit
4397a91
·
verified ·
1 Parent(s): a0332ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
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
- # Launch the Gradio app
 
 
 
 
 
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()