adf0d17497
publish / version_or_publish (push) Has been cancelled
storybook-build / changes (push) Has been cancelled
storybook-build / :storybook-build (push) Has been cancelled
Sync Gradio Skills to Hugging Face / sync-skills (push) Has been cancelled
functional / changes (push) Has been cancelled
functional / build-frontend (push) Has been cancelled
functional / functional-test-SSR=false (push) Has been cancelled
functional / functional-reload (push) Has been cancelled
js / changes (push) Has been cancelled
js / js-test (push) Has been cancelled
docs-build / changes (push) Has been cancelled
docs-build / docs-build (push) Has been cancelled
docs-build / website-build (push) Has been cancelled
functional / functional-test-SSR=true (push) Has been cancelled
hygiene / hygiene-test (push) Has been cancelled
python / changes (push) Has been cancelled
python / build (push) Has been cancelled
python / test-ubuntu-latest-flaky (push) Has been cancelled
python / test-ubuntu-latest-not-flaky (push) Has been cancelled
python / test-windows-latest-flaky (push) Has been cancelled
python / test-windows-latest-not-flaky (push) Has been cancelled
114 lines
2.8 KiB
Python
114 lines
2.8 KiB
Python
import json
|
|
import os
|
|
import random
|
|
|
|
import gradio as gr
|
|
|
|
|
|
def fake_func():
|
|
return "Hello There"
|
|
|
|
|
|
def xray_model(diseases, img):
|
|
return {disease: random.random() for disease in diseases}
|
|
|
|
|
|
def ct_model(diseases, img):
|
|
return {disease: 0.1 for disease in diseases}
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.Markdown(
|
|
"""
|
|
# Detect Disease From Scan
|
|
With this model you can lorem ipsum
|
|
- ipsum 1
|
|
- ipsum 2
|
|
"""
|
|
)
|
|
disease = gr.CheckboxGroup(
|
|
choices=[
|
|
["Covid", "Covid"],
|
|
["Malaria", "Malaria"],
|
|
["Lung Cancer", "Lung Cancer"],
|
|
],
|
|
label="Disease to Scan For",
|
|
)
|
|
|
|
with gr.Tabs():
|
|
with gr.TabItem("X-ray"):
|
|
with gr.Row():
|
|
xray_scan = gr.Image()
|
|
xray_results = gr.JSON()
|
|
xray_run = gr.Button("Run")
|
|
xray_run.click(
|
|
xray_model, inputs=[disease, xray_scan], outputs=xray_results
|
|
)
|
|
|
|
with gr.TabItem("CT Scan"):
|
|
with gr.Row():
|
|
ct_scan = gr.Image()
|
|
ct_results = gr.JSON()
|
|
ct_run = gr.Button("Run")
|
|
ct_run.click(ct_model, inputs=[disease, ct_scan], outputs=ct_results)
|
|
textbox = gr.Textbox()
|
|
|
|
|
|
gr.context.Context.id = 100
|
|
|
|
with gr.Blocks() as demo2:
|
|
gr.Markdown(
|
|
"""
|
|
# Detect Disease From Scan
|
|
With this model you can lorem ipsum
|
|
- ipsum 1
|
|
- ipsum 2
|
|
"""
|
|
)
|
|
disease = gr.CheckboxGroup(
|
|
choices=[
|
|
["Covid", "Covid"],
|
|
["Malaria", "Malaria"],
|
|
["Lung Cancer", "Lung Cancer"],
|
|
],
|
|
label="Disease to Scan For",
|
|
)
|
|
|
|
with gr.Tabs():
|
|
with gr.TabItem("X-ray"):
|
|
with gr.Row():
|
|
xray_scan = gr.Image()
|
|
xray_results = gr.JSON()
|
|
xray_run = gr.Button("Run")
|
|
xray_run.click(
|
|
xray_model, inputs=[disease, xray_scan], outputs=xray_results
|
|
)
|
|
|
|
with gr.TabItem("CT Scan"):
|
|
with gr.Row():
|
|
ct_scan = gr.Image()
|
|
ct_results = gr.JSON()
|
|
ct_run = gr.Button("Run")
|
|
ct_run.click(ct_model, inputs=[disease, ct_scan], outputs=ct_results)
|
|
textbox = gr.Textbox()
|
|
|
|
with gr.Blocks() as demo3:
|
|
demo.render()
|
|
t = gr.Textbox()
|
|
demo3.load(fake_func, [], [t])
|
|
|
|
config = demo.get_config_file()
|
|
config2 = demo2.get_config_file()
|
|
config3 = demo3.get_config_file()
|
|
|
|
json_file_path = "../test/test_files/xray_config.json"
|
|
json_file_path2 = "../test/test_files/xray_config_diff_ids.json"
|
|
json_file_path3 = "../test/test_files/xray_config_wrong.json"
|
|
|
|
for c, j in zip(
|
|
[config, config2, config3], [json_file_path, json_file_path2, json_file_path3]
|
|
):
|
|
assert os.path.exists(j), f"{j} does not exist"
|
|
with open(j, "w") as fp:
|
|
json.dump(c, fp, indent=2)
|