Spaces:
Sleeping
Sleeping
Penny Wang commited on
Include disclaimer in oncology interaction roadmap
Browse filesAdded a disclaimer about the limitations of the cancer visualization model.
- roadmap_visual.py +4 -0
roadmap_visual.py
CHANGED
|
@@ -100,6 +100,10 @@ def generate_roadmap_graph():
|
|
| 100 |
with gr.Blocks() as roadmap_page:
|
| 101 |
gr.Markdown("## 🌐 Oncology Interaction Network")
|
| 102 |
gr.Markdown("An interactive visualization of the AICR cancer types, their progression stages, and the resulting treatment/cost pathways.")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
|
| 104 |
gr.HTML(value=generate_roadmap_graph())
|
| 105 |
|
|
|
|
| 100 |
with gr.Blocks() as roadmap_page:
|
| 101 |
gr.Markdown("## 🌐 Oncology Interaction Network")
|
| 102 |
gr.Markdown("An interactive visualization of the AICR cancer types, their progression stages, and the resulting treatment/cost pathways.")
|
| 103 |
+
gr.Markdown("""
|
| 104 |
+
> ### ⚠️ Disclaimer: Non-Exhaustive Model
|
| 105 |
+
> This visualization is a research-oriented roadmap and is **not inclusive of all cancer types, rare subtypes, or every available treatment protocol.** > Relationships shown are simplified for architectural visualization of clinical-economic trends and should not be used for medical decision-making.
|
| 106 |
+
""")
|
| 107 |
|
| 108 |
gr.HTML(value=generate_roadmap_graph())
|
| 109 |
|