chore: remove css
Browse files
app.py
CHANGED
|
@@ -492,20 +492,6 @@ def reset_fn():
|
|
| 492 |
}
|
| 493 |
|
| 494 |
|
| 495 |
-
CSS = """
|
| 496 |
-
#them {color: grey}
|
| 497 |
-
#them {font-size: 24px}
|
| 498 |
-
#them {font-weight: bold}
|
| 499 |
-
.gradio-container {background-color: white}
|
| 500 |
-
.gradio-button {color: red; font-size: 20px;}
|
| 501 |
-
/* .feedback {font-size: 3px !important} */
|
| 502 |
-
#svelte-s1r2yt {color: grey}
|
| 503 |
-
#svelte-s1r2yt {font-size: 25px}
|
| 504 |
-
#svelte-s1r2yt {font-weight: bold}
|
| 505 |
-
/* #them {text-align: center} */
|
| 506 |
-
"""
|
| 507 |
-
|
| 508 |
-
|
| 509 |
if __name__ == "__main__":
|
| 510 |
|
| 511 |
print("Starting demo ...")
|
|
@@ -514,7 +500,7 @@ if __name__ == "__main__":
|
|
| 514 |
|
| 515 |
(X_train, X_test), (y_train, y_test), valid_symptoms, diseases = load_data()
|
| 516 |
|
| 517 |
-
with gr.Blocks(
|
| 518 |
|
| 519 |
# Link + images
|
| 520 |
gr.Markdown(
|
|
|
|
| 492 |
}
|
| 493 |
|
| 494 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 495 |
if __name__ == "__main__":
|
| 496 |
|
| 497 |
print("Starting demo ...")
|
|
|
|
| 500 |
|
| 501 |
(X_train, X_test), (y_train, y_test), valid_symptoms, diseases = load_data()
|
| 502 |
|
| 503 |
+
with gr.Blocks() as demo:
|
| 504 |
|
| 505 |
# Link + images
|
| 506 |
gr.Markdown(
|