Unknown92 commited on
Commit
3b4e97f
·
1 Parent(s): eda3cbd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -5,6 +5,9 @@ from keyphrasetransformer import KeyPhraseTransformer
5
  from wordcloud import WordCloud
6
  import matplotlib.pyplot as plt
7
 
 
 
 
8
  kp = KeyPhraseTransformer()
9
 
10
  @st.cache_resource
 
5
  from wordcloud import WordCloud
6
  import matplotlib.pyplot as plt
7
 
8
+ # Set page configuration with a dark theme
9
+ st.set_page_config(page_title="Resume Match Calculator", page_icon=":clipboard:", layout="wide", initial_sidebar_state="expanded", theme="dark")
10
+
11
  kp = KeyPhraseTransformer()
12
 
13
  @st.cache_resource