GeorgHCundK
commited on
Commit
•
b190566
1
Parent(s):
0078639
shrink width
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ def classify_text(text):
|
|
57 |
return f'<div style="background-color: {color_mapping[predicted_label]}; padding: 10px; border-radius: 5px;">{predicted_label}</div>'
|
58 |
|
59 |
# Create the Gradio interface using Blocks for custom layout
|
60 |
-
with gr.Blocks(css=".gradio-container { max-width:
|
61 |
gr.Markdown("# ePA Classifier")
|
62 |
gr.Markdown("Gib einen Satz oder Text ein, der in 'Ablehnung', 'Neutral', oder 'Zustimmung' klassifiziert werden soll.")
|
63 |
|
|
|
57 |
return f'<div style="background-color: {color_mapping[predicted_label]}; padding: 10px; border-radius: 5px;">{predicted_label}</div>'
|
58 |
|
59 |
# Create the Gradio interface using Blocks for custom layout
|
60 |
+
with gr.Blocks(css=".gradio-container { max-width: 400px; margin: auto; }") as interface:
|
61 |
gr.Markdown("# ePA Classifier")
|
62 |
gr.Markdown("Gib einen Satz oder Text ein, der in 'Ablehnung', 'Neutral', oder 'Zustimmung' klassifiziert werden soll.")
|
63 |
|