Update app.py
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ for idx, img_file in enumerate(image_files):
|
|
44 |
|
45 |
# create a file uploader for the content image
|
46 |
st.write('Upload the content image:')
|
47 |
-
content_image = st.file_uploader('Content Image', type=['
|
48 |
|
49 |
# create the botton to select the style image between 1, 2, and 3
|
50 |
choice = st.selectbox('Select the style art:', [f'Style {i + 1}' for i in range(num_images)])
|
|
|
44 |
|
45 |
# create a file uploader for the content image
|
46 |
st.write('Upload the content image:')
|
47 |
+
content_image = st.file_uploader('Content Image', type=['jpg', 'jpeg'])
|
48 |
|
49 |
# create the botton to select the style image between 1, 2, and 3
|
50 |
choice = st.selectbox('Select the style art:', [f'Style {i + 1}' for i in range(num_images)])
|