elevow commited on
Commit
2746d5c
·
verified ·
1 Parent(s): af25a56

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -39,7 +39,7 @@ SENSOR_WIDTH_MM: Final[float] = 36.0 # Full-frame 35mm width
39
  gr.set_static_paths(paths=[str(VIEWER_DIR), str(OUTPUTS_DIR)])
40
 
41
 
42
- CORRECT_PASSWORD = "yes"
43
  THEME: Final = gr.themes.Origin()
44
 
45
  CSS: Final[str] = """
@@ -651,14 +651,14 @@ def build_demo() -> gr.Blocks:
651
 
652
  # --- State Tracking & Hidden Stores ---
653
  # Change "your_secure_password" to whatever password you want to use
654
- CORRECT_PASSWORD = "your_secure_password"
655
  is_authenticated = gr.State(value=False)
656
  current_viewer_url = gr.Textbox(value="", visible=False, elem_id="viewer-url-store")
657
 
658
  # Header
659
  with gr.Column(elem_id="app-header"):
660
- gr.Markdown("## SHARP")
661
- gr.Markdown("Single-image **3D Gaussian scene** prediction")
662
 
663
  # --- Password Protection Layer ---
664
  with gr.Row(elem_id="password-row") as password_row:
 
39
  gr.set_static_paths(paths=[str(VIEWER_DIR), str(OUTPUTS_DIR)])
40
 
41
 
42
+
43
  THEME: Final = gr.themes.Origin()
44
 
45
  CSS: Final[str] = """
 
651
 
652
  # --- State Tracking & Hidden Stores ---
653
  # Change "your_secure_password" to whatever password you want to use
654
+ CORRECT_PASSWORD = "yes"
655
  is_authenticated = gr.State(value=False)
656
  current_viewer_url = gr.Textbox(value="", visible=False, elem_id="viewer-url-store")
657
 
658
  # Header
659
  with gr.Column(elem_id="app-header"):
660
+ gr.Markdown("##3D Guassian Prediction")
661
+ gr.Markdown("Single-image **3D Gaussian scene** prediction using Apple's 2025 Sharp Model.")
662
 
663
  # --- Password Protection Layer ---
664
  with gr.Row(elem_id="password-row") as password_row: