Update app.py
Browse files
app.py
CHANGED
|
@@ -74,6 +74,27 @@ def predict_tags(text, threshold=0.5):
|
|
| 74 |
|
| 75 |
|
| 76 |
# ========== interface ==========
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
st.title("Prédicteur de Tags StackOverflow")
|
| 78 |
|
| 79 |
st.markdown("## 1. Analyse des données textuelles")
|
|
|
|
| 74 |
|
| 75 |
|
| 76 |
# ========== interface ==========
|
| 77 |
+
|
| 78 |
+
st.markdown("""
|
| 79 |
+
<style>
|
| 80 |
+
html, body, [class*="css"] {
|
| 81 |
+
font-size: 18px !important;
|
| 82 |
+
}
|
| 83 |
+
h1 {
|
| 84 |
+
font-size: 38px !important;
|
| 85 |
+
}
|
| 86 |
+
h2 {
|
| 87 |
+
font-size: 30px !important;
|
| 88 |
+
}
|
| 89 |
+
h3 {
|
| 90 |
+
font-size: 24px !important;
|
| 91 |
+
}
|
| 92 |
+
.stTextInput > label, .stTextArea > label {
|
| 93 |
+
font-size: 20px !important;
|
| 94 |
+
}
|
| 95 |
+
</style>
|
| 96 |
+
""", unsafe_allow_html=True)
|
| 97 |
+
|
| 98 |
st.title("Prédicteur de Tags StackOverflow")
|
| 99 |
|
| 100 |
st.markdown("## 1. Analyse des données textuelles")
|