Spaces:
Running
Running
Commit
·
5bff47f
1
Parent(s):
081e058
rolled back streamlit
Browse files- pages/home.py +1 -1
- pages/processor.py +1 -1
- requirements.txt +1 -1
pages/home.py
CHANGED
|
@@ -18,7 +18,7 @@ def write():
|
|
| 18 |
"""
|
| 19 |
)
|
| 20 |
st.markdown("#")
|
| 21 |
-
col1, col2, col3 = st.
|
| 22 |
|
| 23 |
col1.write("## **AraBERT**")
|
| 24 |
col1.image("images/arabert_logo.png", width=200)
|
|
|
|
| 18 |
"""
|
| 19 |
)
|
| 20 |
st.markdown("#")
|
| 21 |
+
col1, col2, col3 = st.beta_columns(3)
|
| 22 |
|
| 23 |
col1.write("## **AraBERT**")
|
| 24 |
col1.image("images/arabert_logo.png", width=200)
|
pages/processor.py
CHANGED
|
@@ -101,7 +101,7 @@ def _desegmentword(orig_word: str) -> str:
|
|
| 101 |
|
| 102 |
|
| 103 |
def write():
|
| 104 |
-
_, col1, _ = st.
|
| 105 |
|
| 106 |
with col1:
|
| 107 |
col1.title("Arabic Text Pre-Processor")
|
|
|
|
| 101 |
|
| 102 |
|
| 103 |
def write():
|
| 104 |
+
_, col1, _ = st.beta_columns(3)
|
| 105 |
|
| 106 |
with col1:
|
| 107 |
col1.title("Arabic Text Pre-Processor")
|
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
streamlit==0.
|
| 2 |
arabic-reshaper==2.1.3
|
| 3 |
python-bidi==0.4.2
|
| 4 |
PyArabic
|
|
|
|
| 1 |
+
streamlit==0.84.2
|
| 2 |
arabic-reshaper==2.1.3
|
| 3 |
python-bidi==0.4.2
|
| 4 |
PyArabic
|