Fabrice-TIERCELIN commited on
Commit
b6ed87d
·
verified ·
1 Parent(s): 66ce000

This Pull Request fixes the space

Browse files

The examples break the space if they are cached at the startup because it's too long. If they are cached after the startup, there are no more problems.

Click on _Merge_ to add this feature.

Files changed (1) hide show
  1. App_main.py +1 -1
App_main.py CHANGED
@@ -102,7 +102,7 @@ io = gr.Interface(fn=inference_func,
102
  article=article,
103
  allow_flagging='auto',
104
  examples=examples,
105
- cache_examples=True,
106
  layout="grid"
107
  )
108
  io.launch()
 
102
  article=article,
103
  allow_flagging='auto',
104
  examples=examples,
105
+ cache_examples=False,
106
  layout="grid"
107
  )
108
  io.launch()