osheina commited on
Commit
39b8cdf
·
verified ·
1 Parent(s): 55deba3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -10,6 +10,14 @@ from lstm import lstm_model_page
10
  from bert_strim import bert_model_page
11
  import pandas as pd
12
 
 
 
 
 
 
 
 
 
13
 
14
  def app_description_page():
15
  st.title("Welcome to My App!")
 
10
  from bert_strim import bert_model_page
11
  import pandas as pd
12
 
13
+ # Определение функции для загрузки CSS файла
14
+ def local_css(file_name):
15
+ with open(file_name) as f:
16
+ st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
17
+
18
+ # Загрузка CSS файла
19
+ local_css("styles.css")
20
+
21
 
22
  def app_description_page():
23
  st.title("Welcome to My App!")