helblazer811 commited on
Commit
c4a91ca
·
1 Parent(s): 1708f47

Removed caching

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -160,7 +160,7 @@ with gr.Blocks(
160
  outputs=[gallery]
161
  )
162
 
163
- gr.Examples(examples=EXAMPLES, inputs=[prompt, words, seed, layer_start_index, timestep_start_index], outputs=[gallery], fn=process_inputs, cache_examples=True)
164
 
165
  # Automatically process the first example on launch
166
  # demo.load(process_inputs, inputs=[prompt, words, seed, layer_start_index, timestep_start_index], outputs=[gallery])
 
160
  outputs=[gallery]
161
  )
162
 
163
+ gr.Examples(examples=EXAMPLES, inputs=[prompt, words, seed, layer_start_index, timestep_start_index], outputs=[gallery], fn=process_inputs, cache_examples=False)
164
 
165
  # Automatically process the first example on launch
166
  # demo.load(process_inputs, inputs=[prompt, words, seed, layer_start_index, timestep_start_index], outputs=[gallery])