Update app.py
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ article = """
|
|
56 |
- Click clear button to refresh text
|
57 |
"""
|
58 |
|
59 |
-
gr.Interface(classify_compliant,
|
60 |
inputs=gr.Textbox(lines =10,label = "Type your Complaint of our Product here or you can select any of the examples provided below ", max_lines = 20),
|
61 |
outputs = gr.Textbox(lines =5,label = "Complaint Category"),
|
62 |
title = title,
|
@@ -79,4 +79,5 @@ gr.Interface(classify_compliant,
|
|
79 |
I do not even know what this debt is for.I have tried contacting the collection agency by mail to obtain verification with no response and they will not remove the item from my report."""
|
80 |
|
81 |
]
|
82 |
-
)
|
|
|
|
56 |
- Click clear button to refresh text
|
57 |
"""
|
58 |
|
59 |
+
demo = gr.Interface(classify_compliant,
|
60 |
inputs=gr.Textbox(lines =10,label = "Type your Complaint of our Product here or you can select any of the examples provided below ", max_lines = 20),
|
61 |
outputs = gr.Textbox(lines =5,label = "Complaint Category"),
|
62 |
title = title,
|
|
|
79 |
I do not even know what this debt is for.I have tried contacting the collection agency by mail to obtain verification with no response and they will not remove the item from my report."""
|
80 |
|
81 |
]
|
82 |
+
)
|
83 |
+
demo.launch()
|