ACA050 commited on
Commit
355fa6b
·
verified ·
1 Parent(s): c3da054

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -478,12 +478,12 @@ output_components = [
478
  gr.HTML(label="Top Global Feature Importance")
479
  ]
480
 
481
- with gr.Blocks(theme=gr.themes.Soft()) as iface:
482
  gr.Markdown("# Protein Stability Change (ΔΔG) Prediction with Explainability")
483
  gr.Markdown(
484
  "Predict ΔΔG and mutation effect for single amino acid substitutions in proteins. "
485
  "Explore physicochemical changes, mutation structural context, and feature importance with SHAP explanations. "
486
- "Designed for researchers and doctors for practical applications."
487
  "All backend features are included and frontend template is professional and exceptional."
488
  )
489
 
 
478
  gr.HTML(label="Top Global Feature Importance")
479
  ]
480
 
481
+ with gr.Blocks() as iface: # Removed theme=gr.themes.Soft()
482
  gr.Markdown("# Protein Stability Change (ΔΔG) Prediction with Explainability")
483
  gr.Markdown(
484
  "Predict ΔΔG and mutation effect for single amino acid substitutions in proteins. "
485
  "Explore physicochemical changes, mutation structural context, and feature importance with SHAP explanations. "
486
+ "Designed for researchers and doctors for practical applications."
487
  "All backend features are included and frontend template is professional and exceptional."
488
  )
489