ovshake commited on
Commit
fc9a5c9
1 Parent(s): 822636c

fix prompt

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -125,7 +125,7 @@ if file_name is not None:
125
  guidance_scale = st.slider("Select a guidance scale. 7.5 gives the best results.", 1.0, 15.0, value=7.5)
126
  stable_fashion_args.guidance_scale = guidance_scale
127
  prompt = st.text_input('Write the description of cloth you want to try', 'a bright yellow t shirt')
128
- stable_fashion_args.prompt = guidance_scale
129
 
130
  num_steps = st.slider("No. of inference steps for the diffusion process", 5, 50, value=25)
131
 
 
125
  guidance_scale = st.slider("Select a guidance scale. 7.5 gives the best results.", 1.0, 15.0, value=7.5)
126
  stable_fashion_args.guidance_scale = guidance_scale
127
  prompt = st.text_input('Write the description of cloth you want to try', 'a bright yellow t shirt')
128
+ stable_fashion_args.prompt = prompt
129
 
130
  num_steps = st.slider("No. of inference steps for the diffusion process", 5, 50, value=25)
131