Spaces:
Sleeping
Sleeping
Update pages/3Life_cycle_of_ML.py
Browse files
pages/3Life_cycle_of_ML.py
CHANGED
|
@@ -1885,7 +1885,15 @@ elif st.session_state.page == "projects":
|
|
| 1885 |
#------------------------------------------------------ tool ------------------------------------------
|
| 1886 |
|
| 1887 |
elif st.session_state.page == "tool":
|
| 1888 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1889 |
uploaded_file = st.file_uploader("Choose a file")
|
| 1890 |
|
| 1891 |
if uploaded_file is not None:
|
|
|
|
| 1885 |
#------------------------------------------------------ tool ------------------------------------------
|
| 1886 |
|
| 1887 |
elif st.session_state.page == "tool":
|
| 1888 |
+
st.markdown('# Image augmentation tool')
|
| 1889 |
+
st.markdown(''' #### This tool is created to perform image augmentation operation such as:
|
| 1890 |
+
<li>1. Scaling</li>
|
| 1891 |
+
<li>2. Translation</li>
|
| 1892 |
+
<li>3. Shearing</li>
|
| 1893 |
+
<li>4. Rotation</li>
|
| 1894 |
+
<li>5. Cropping</li>
|
| 1895 |
+
''',unsafe_allow_html=True)
|
| 1896 |
+
st.markdown('')
|
| 1897 |
uploaded_file = st.file_uploader("Choose a file")
|
| 1898 |
|
| 1899 |
if uploaded_file is not None:
|