Update app.py
Browse files
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
|