Emil25 commited on
Commit
b666ce8
1 Parent(s): 55c407a

Update pages/Visualization.py

Browse files
Files changed (1) hide show
  1. pages/Visualization.py +12 -17
pages/Visualization.py CHANGED
@@ -31,21 +31,16 @@ image_idea = st.text_input('Предложите свою тему для ген
31
  image_gen__btn = st.button('Генерировать изображение')
32
  if image_gen__btn:
33
  with st.spinner('Идёт загрузка изображения...'):
34
- try:
35
- image_bytes = generate_img({"inputs": image_idea})
36
- image_raw = io.BytesIO(image_bytes)
37
- st.success('Готово')
38
- st.image(image_raw)
39
- st.markdown('## Опишите фотографию на английском языке')
40
- st.markdown('## План ответа поможет вам:')
41
- st.markdown('+ the place;')
42
- st.markdown('+ the action;')
43
- st.markdown('+ the person’s appearance;')
44
- st.markdown('+ whether you like the picture or not;')
45
- st.markdown('+ why.')
46
- st.markdown('Start with: “I’d like to describe this picture. The picture shows …” ')
47
- except UnidentifiedImageError:
48
- st.warning('This is a warning', icon="⚠️")
49
-
50
-
51
  st.divider()
 
31
  image_gen__btn = st.button('Генерировать изображение')
32
  if image_gen__btn:
33
  with st.spinner('Идёт загрузка изображения...'):
34
+ image_bytes = generate_img({"inputs": image_idea})
35
+ image_raw = io.BytesIO(image_bytes)
36
+ st.success('Готово')
37
+ st.image(image_raw)
38
+ st.markdown('## Опишите фотографию на английском языке')
39
+ st.markdown('## План ответа поможет вам:')
40
+ st.markdown('+ the place;')
41
+ st.markdown('+ the action;')
42
+ st.markdown('+ the person’s appearance;')
43
+ st.markdown('+ whether you like the picture or not;')
44
+ st.markdown('+ why.')
45
+ st.markdown('Start with: “I’d like to describe this picture. The picture shows …” ')
 
 
 
 
 
46
  st.divider()