Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,24 +7,22 @@ import sentencepiece as spm
|
|
| 7 |
|
| 8 |
st.markdown("""
|
| 9 |
<style>
|
| 10 |
-
@import url('https://fonts.googleapis.com/css2?family=
|
| 11 |
</style>
|
| 12 |
-
<div style='display: flex; flex-direction: column; align-items:
|
| 13 |
-
<div style='display: flex; align-items:
|
| 14 |
-
<div style='width: 20px; height: 20px; background-color: green;
|
| 15 |
-
<div style='width: 20px; height: 20px; background-color: red;
|
| 16 |
-
<div style='width: 20px; height: 20px; background-color: yellow;
|
| 17 |
-
<span style='font-size: 40px; font-weight: bold; font-family: "Kanit",
|
| 18 |
</div>
|
| 19 |
<div style='text-align: left; width: 100%;'>
|
| 20 |
-
<span style='font-size: 20px; font-weight: bold; color: #333; font-family: "Kanit",
|
| 21 |
-
<strong>PRO</strong>phet & <strong>TA</strong>pex E<strong>X</strong>plorer
|
| 22 |
-
</span>
|
| 23 |
</div>
|
| 24 |
</div>
|
| 25 |
""", unsafe_allow_html=True)
|
| 26 |
|
| 27 |
-
|
| 28 |
# File upload interface
|
| 29 |
uploaded_file = st.file_uploader("Carregue um arquivo CSV ou XLSX", type=['csv', 'xlsx'])
|
| 30 |
|
|
|
|
| 7 |
|
| 8 |
st.markdown("""
|
| 9 |
<style>
|
| 10 |
+
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@700&display=swap');
|
| 11 |
</style>
|
| 12 |
+
<div style='display: flex; flex-direction: column; align-items: flex-start;'>
|
| 13 |
+
<div style='display: flex; align-items: center;'>
|
| 14 |
+
<div style='width: 20px; height: 20px; background-color: green; margin-right: 2px;'></div>
|
| 15 |
+
<div style='width: 20px; height: 20px; background-color: red; margin-right: 2px;'></div>
|
| 16 |
+
<div style='width: 20px; height: 20px; background-color: yellow; margin-right: 10px;'></div>
|
| 17 |
+
<span style='font-size: 40px; font-weight: bold; font-family: "Kanit", sans-serif;'>PROTAX</span>
|
| 18 |
</div>
|
| 19 |
<div style='text-align: left; width: 100%;'>
|
| 20 |
+
<span style='font-size: 20px; font-weight: bold; color: #333; font-family: "Kanit", sans-serif'>
|
| 21 |
+
<strong>PRO</strong>phet & <strong>TA</strong>pex E<strong>X</strong>plorer</span>
|
|
|
|
| 22 |
</div>
|
| 23 |
</div>
|
| 24 |
""", unsafe_allow_html=True)
|
| 25 |
|
|
|
|
| 26 |
# File upload interface
|
| 27 |
uploaded_file = st.file_uploader("Carregue um arquivo CSV ou XLSX", type=['csv', 'xlsx'])
|
| 28 |
|