Spaces:
Build error
Build error
update
Browse files
app.py
CHANGED
|
@@ -51,7 +51,7 @@ hide_streamlit_style = """
|
|
| 51 |
"""
|
| 52 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
| 53 |
|
| 54 |
-
|
| 55 |
st.sidebar.title(args.SIDEBAR_TITLE)
|
| 56 |
method = st.sidebar.radio('Choose input source π', options=['Image', 'Webcam'])
|
| 57 |
|
|
|
|
| 51 |
"""
|
| 52 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
| 53 |
|
| 54 |
+
st.write(args.LANDINGPAGE_TITLE)
|
| 55 |
st.sidebar.title(args.SIDEBAR_TITLE)
|
| 56 |
method = st.sidebar.radio('Choose input source π', options=['Image', 'Webcam'])
|
| 57 |
|
args.py
CHANGED
|
@@ -2,7 +2,7 @@ PAGE_TITLE = 'Car part Classifier'
|
|
| 2 |
PAGE_ICON = "π€"
|
| 3 |
LAYOUT = "wide"
|
| 4 |
|
| 5 |
-
|
| 6 |
SIDEBAR_TITLE = 'β¨ Navigation β¨'
|
| 7 |
|
| 8 |
|
|
|
|
| 2 |
PAGE_ICON = "π€"
|
| 3 |
LAYOUT = "wide"
|
| 4 |
|
| 5 |
+
LANDINGPAGE_TITLE = 'Car part Classification'
|
| 6 |
SIDEBAR_TITLE = 'β¨ Navigation β¨'
|
| 7 |
|
| 8 |
|