mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
90f3aec388
* optional labels * added prop * Added IOComponent class * get component fix * fixed component function * fixed test components * formatting * fixed output tests * working on blocks tests * fixed test blocks * cleanup
60 lines
1.9 KiB
Python
60 lines
1.9 KiB
Python
import random
|
|
import unittest
|
|
|
|
import gradio as gr
|
|
from gradio.test_data.blocks_configs import XRAY_CONFIG
|
|
|
|
|
|
class TestBlocks(unittest.TestCase):
|
|
def test_xray(self):
|
|
def fake_func():
|
|
return "Hello There"
|
|
|
|
xray_model = lambda diseases, img: {
|
|
disease: random.random() for disease in diseases
|
|
}
|
|
ct_model = lambda diseases, img: {disease: 0.1 for disease in diseases}
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.components.Markdown(
|
|
"""
|
|
# Detect Disease From Scan
|
|
With this model you can lorem ipsum
|
|
- ipsum 1
|
|
- ipsum 2
|
|
"""
|
|
)
|
|
disease = gr.components.CheckboxGroup(
|
|
choices=["Covid", "Malaria", "Lung Cancer"], label="Disease to Scan For"
|
|
)
|
|
|
|
with gr.Tabs():
|
|
with gr.TabItem("X-ray"):
|
|
with gr.Row():
|
|
xray_scan = gr.components.Image()
|
|
xray_results = gr.components.JSON()
|
|
xray_run = gr.Button(
|
|
"Run",
|
|
css={"background-color": "red", "--hover-color": "orange"},
|
|
)
|
|
xray_run.click(
|
|
xray_model, inputs=[disease, xray_scan], outputs=xray_results
|
|
)
|
|
|
|
with gr.TabItem("CT Scan"):
|
|
with gr.Row():
|
|
ct_scan = gr.components.Image()
|
|
ct_results = gr.components.JSON()
|
|
ct_run = gr.Button("Run")
|
|
ct_run.click(
|
|
ct_model, inputs=[disease, ct_scan], outputs=ct_results
|
|
)
|
|
textbox = gr.components.Textbox()
|
|
demo.load(fake_func, [], [textbox])
|
|
|
|
self.assertEqual(XRAY_CONFIG, demo.get_config_file())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|