silentchen commited on
Commit
540481d
1 Parent(s): 1e2802d

add hit for users

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -311,6 +311,16 @@ def main():
311
  """
312
  state = gr.State({})
313
  gr.HTML(description)
 
 
 
 
 
 
 
 
 
 
314
  with gr.Column():
315
  with gr.Column():
316
  gr.HTML('<span style="font-size: 20px; font-weight: bold">Step 1: generate original 3D objects using Shap-E.</span>')
 
311
  """
312
  state = gr.State({})
313
  gr.HTML(description)
314
+ shap_editor_hint = """<span style="font-size: 20px; font-weight: bold"">Hint:</span>
315
+ <br>
316
+ <span style="font-size: 16px">
317
+ 1. After generating and editing, it takes some time to display the 3D model. Please wait for a while. <br>
318
+ 2. The original Shap-E is not good at compositional generation. Using prompts contain one object can usually get good results. Please see the <a href="https://arxiv.org/abs/2305.02463" target="_blank">original paper</a> for more details. <br>
319
+ 2. The processing time in the demo including the time of preprocessing, model loading and extracting the mesh, making it slower then reported. Besides, the demo is currently running on A10 which is slower than the tested A6000 GPU. <br>
320
+ 3. If you don't get satisfying generating/editing results, please try to change the random seed in Advanced Options.
321
+ </span>
322
+ """
323
+ gr.HTML(shap_editor_hint)
324
  with gr.Column():
325
  with gr.Column():
326
  gr.HTML('<span style="font-size: 20px; font-weight: bold">Step 1: generate original 3D objects using Shap-E.</span>')