Emil25 commited on
Commit
cfa676e
1 Parent(s): 33334f5

Update pages/Visualization.py

Browse files
Files changed (1) hide show
  1. pages/Visualization.py +14 -13
pages/Visualization.py CHANGED
@@ -23,19 +23,20 @@ image_idea = st.text_input('Предложите свою тему для ген
23
  image_gen__btn = st.button('Генерировать изображение')
24
  if image_gen__btn:
25
  with st.spinner('...'):
26
- image_bytes = generate_img({"inputs": image_idea})
27
- image_raw = io.BytesIO(image_bytes)
28
- st.success('Готово')
29
- if image_raw is not None:
30
- st.image(image_raw, width=600)
31
- st.markdown('## Опишите фотографию на английском языке')
32
- st.markdown('## План ответа поможет вам:')
33
- st.markdown('+ the place;')
34
- st.markdown('+ the action;')
35
- st.markdown('+ the person’s appearance;')
36
- st.markdown('+ whether you like the picture or not;')
37
- st.markdown('+ why.')
38
- st.markdown('Start with: “I’d like to describe this picture. The picture shows …” ')
 
39
 
40
  st.divider()
41
 
 
23
  image_gen__btn = st.button('Генерировать изображение')
24
  if image_gen__btn:
25
  with st.spinner('...'):
26
+ try:
27
+ image_bytes = generate_img({"inputs": image_idea})
28
+ image_raw = io.BytesIO(image_bytes)
29
+ #except UnidentifiedImageError:
30
+ st.success('Готово')
31
+ st.image(image_raw)
32
+ st.markdown('## Опишите фотографию на английском языке')
33
+ st.markdown('## План ответа поможет вам:')
34
+ st.markdown('+ the place;')
35
+ st.markdown('+ the action;')
36
+ st.markdown('+ the person’s appearance;')
37
+ st.markdown('+ whether you like the picture or not;')
38
+ st.markdown('+ why.')
39
+ st.markdown('Start with: “I’d like to describe this picture. The picture shows …” ')
40
 
41
  st.divider()
42