Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
chore: update title in app.py
Browse files- app.py +12 -5
- symptoms_categories.py +1 -1
app.py
CHANGED
@@ -501,14 +501,18 @@ if __name__ == "__main__":
|
|
501 |
with gr.Blocks() as demo:
|
502 |
|
503 |
# Link + images
|
|
|
504 |
gr.Markdown(
|
505 |
"""
|
506 |
<p align="center">
|
507 |
<img width=200 src="https://user-images.githubusercontent.com/5758427/197816413-d9cddad3-ba38-4793-847d-120975e1da11.png">
|
508 |
</p>
|
509 |
-
|
510 |
-
|
511 |
-
|
|
|
|
|
|
|
512 |
<p align="center">
|
513 |
<a href="https://github.com/zama-ai/concrete-ml"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="https://user-images.githubusercontent.com/5758427/197972109-faaaff3e-10e2-4ab6-80f5-7531f7cfb08f.png">Concrete-ML</a>
|
514 |
—
|
@@ -518,9 +522,12 @@ if __name__ == "__main__":
|
|
518 |
—
|
519 |
<a href="https://twitter.com/zama_fhe"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="https://user-images.githubusercontent.com/5758427/197975044-bab9d199-e120-433b-b3be-abd73b211a54.png">@zama_fhe</a>
|
520 |
</p>
|
521 |
-
|
|
|
|
|
|
|
522 |
<p align="center">
|
523 |
-
<img width="65%" height="
|
524 |
</p>
|
525 |
"""
|
526 |
)
|
|
|
501 |
with gr.Blocks() as demo:
|
502 |
|
503 |
# Link + images
|
504 |
+
gr.Markdown()
|
505 |
gr.Markdown(
|
506 |
"""
|
507 |
<p align="center">
|
508 |
<img width=200 src="https://user-images.githubusercontent.com/5758427/197816413-d9cddad3-ba38-4793-847d-120975e1da11.png">
|
509 |
</p>
|
510 |
+
""")
|
511 |
+
gr.Markdown()
|
512 |
+
gr.Markdown("""<h2 align="center">Health Prediction On Encrypted Data Using Fully Homomorphic Encryption</h2>""")
|
513 |
+
gr.Markdown()
|
514 |
+
gr.Markdown(
|
515 |
+
"""
|
516 |
<p align="center">
|
517 |
<a href="https://github.com/zama-ai/concrete-ml"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="https://user-images.githubusercontent.com/5758427/197972109-faaaff3e-10e2-4ab6-80f5-7531f7cfb08f.png">Concrete-ML</a>
|
518 |
—
|
|
|
522 |
—
|
523 |
<a href="https://twitter.com/zama_fhe"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="https://user-images.githubusercontent.com/5758427/197975044-bab9d199-e120-433b-b3be-abd73b211a54.png">@zama_fhe</a>
|
524 |
</p>
|
525 |
+
""")
|
526 |
+
gr.Markdown()
|
527 |
+
gr.Markdown(
|
528 |
+
""""
|
529 |
<p align="center">
|
530 |
+
<img width="65%" height="25%" src="https://raw.githubusercontent.com/kcelia/Img/main/healthcare_prediction.jpg">
|
531 |
</p>
|
532 |
"""
|
533 |
)
|
symptoms_categories.py
CHANGED
@@ -145,6 +145,7 @@ MUSCULOSKELETAL_SYMPTOMS = {
|
|
145 |
|
146 |
GENERAL_SYMPTOMS = {
|
147 |
"GENERAL_CONCERNS": [
|
|
|
148 |
"anxiety",
|
149 |
"restlessness",
|
150 |
"lethargy",
|
@@ -168,7 +169,6 @@ GENERAL_SYMPTOMS = {
|
|
168 |
"sweating",
|
169 |
"internal_itching",
|
170 |
"mild_fever",
|
171 |
-
"acute_liver_failure",
|
172 |
"dehydration",
|
173 |
"headache",
|
174 |
"frequent_unprotected_sexual_intercourse_with_multiple_partners",
|
|
|
145 |
|
146 |
GENERAL_SYMPTOMS = {
|
147 |
"GENERAL_CONCERNS": [
|
148 |
+
"acute_liver_failure",
|
149 |
"anxiety",
|
150 |
"restlessness",
|
151 |
"lethargy",
|
|
|
169 |
"sweating",
|
170 |
"internal_itching",
|
171 |
"mild_fever",
|
|
|
172 |
"dehydration",
|
173 |
"headache",
|
174 |
"frequent_unprotected_sexual_intercourse_with_multiple_partners",
|