Spaces:
Runtime error
Runtime error
Commit
·
2424164
1
Parent(s):
4e2ac67
update
Browse files- app/main.py +30 -1
app/main.py
CHANGED
@@ -17,6 +17,34 @@ img {
|
|
17 |
}
|
18 |
</style>
|
19 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
# Config
|
21 |
MAX_SEQ_LEN = 128
|
22 |
MODELS_PATH = "kadabengaran/IndoBERT-BiLSTM-Useful-App-Review"
|
@@ -216,4 +244,5 @@ class App:
|
|
216 |
|
217 |
if __name__ == "__main__":
|
218 |
app = App()
|
219 |
-
app.run()
|
|
|
|
17 |
}
|
18 |
</style>
|
19 |
"""
|
20 |
+
|
21 |
+
footer="""<style>
|
22 |
+
a:link , a:visited{
|
23 |
+
color: blue;
|
24 |
+
background-color: transparent;
|
25 |
+
text-decoration: underline;
|
26 |
+
}
|
27 |
+
|
28 |
+
a:hover, a:active {
|
29 |
+
color: red;
|
30 |
+
background-color: transparent;
|
31 |
+
text-decoration: underline;
|
32 |
+
}
|
33 |
+
|
34 |
+
.footer {
|
35 |
+
position: fixed;
|
36 |
+
left: 0;
|
37 |
+
bottom: 0;
|
38 |
+
width: 100%;
|
39 |
+
background-color: white;
|
40 |
+
color: black;
|
41 |
+
text-align: center;
|
42 |
+
}
|
43 |
+
</style>
|
44 |
+
<div class="footer">
|
45 |
+
<p>Developed with ❤ by <a style='display: block; text-align: center;' href="https://www.heflin.dev/" target="_blank">Heflin Stephen Raj S</a></p>
|
46 |
+
</div>
|
47 |
+
"""
|
48 |
# Config
|
49 |
MAX_SEQ_LEN = 128
|
50 |
MODELS_PATH = "kadabengaran/IndoBERT-BiLSTM-Useful-App-Review"
|
|
|
244 |
|
245 |
if __name__ == "__main__":
|
246 |
app = App()
|
247 |
+
app.run()
|
248 |
+
st.markdown(footer,unsafe_allow_html=True)
|