Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
romanbredehoft-zama
commited on
Commit
β’
59a3f3b
1
Parent(s):
dd807a5
Move the questions above the banner
Browse files
app.py
CHANGED
@@ -40,27 +40,6 @@ demo = gr.Blocks()
|
|
40 |
|
41 |
print("Starting the demo...")
|
42 |
with demo:
|
43 |
-
gr.Markdown(
|
44 |
-
"""
|
45 |
-
<p align="center">
|
46 |
-
<img width=200 src="file/images/logos/zama.jpg">
|
47 |
-
</p>
|
48 |
-
<h1 align="center">Encrypted Credit Card Approval Prediction Using Fully Homomorphic Encryption</h1>
|
49 |
-
<p align="center">
|
50 |
-
<a href="https://github.com/zama-ai/concrete-ml"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="file/images/logos/github.png">Concrete-ML</a>
|
51 |
-
β
|
52 |
-
<a href="https://docs.zama.ai/concrete-ml"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="file/images/logos/documentation.png">Documentation</a>
|
53 |
-
β
|
54 |
-
<a href="https://zama.ai/community"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="file/images/logos/community.png">Community</a>
|
55 |
-
β
|
56 |
-
<a href="https://twitter.com/zama_fhe"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="file/images/logos/x.png">@zama_fhe</a>
|
57 |
-
</p>
|
58 |
-
<p align="center">
|
59 |
-
<img src="file/images/banner.png">
|
60 |
-
</p>
|
61 |
-
"""
|
62 |
-
)
|
63 |
-
|
64 |
with gr.Accordion("What is credit scoring for card approval?", open=False):
|
65 |
gr.Markdown(
|
66 |
"""
|
@@ -119,6 +98,26 @@ with demo:
|
|
119 |
"""
|
120 |
)
|
121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
|
123 |
gr.Markdown("## Step 1: Generate the keys.")
|
124 |
gr.Markdown("<hr />")
|
|
|
40 |
|
41 |
print("Starting the demo...")
|
42 |
with demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
with gr.Accordion("What is credit scoring for card approval?", open=False):
|
44 |
gr.Markdown(
|
45 |
"""
|
|
|
98 |
"""
|
99 |
)
|
100 |
|
101 |
+
gr.Markdown(
|
102 |
+
"""
|
103 |
+
<p align="center">
|
104 |
+
<img width=200 src="file/images/logos/zama.jpg">
|
105 |
+
</p>
|
106 |
+
<h1 align="center">Encrypted Credit Card Approval Prediction Using Fully Homomorphic Encryption</h1>
|
107 |
+
<p align="center">
|
108 |
+
<a href="https://github.com/zama-ai/concrete-ml"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="file/images/logos/github.png">Concrete-ML</a>
|
109 |
+
β
|
110 |
+
<a href="https://docs.zama.ai/concrete-ml"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="file/images/logos/documentation.png">Documentation</a>
|
111 |
+
β
|
112 |
+
<a href="https://zama.ai/community"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="file/images/logos/community.png">Community</a>
|
113 |
+
β
|
114 |
+
<a href="https://twitter.com/zama_fhe"> <img style="vertical-align: middle; display:inline-block; margin-right: 3px;" width=15 src="file/images/logos/x.png">@zama_fhe</a>
|
115 |
+
</p>
|
116 |
+
<p align="center">
|
117 |
+
<img src="file/images/banner.png">
|
118 |
+
</p>
|
119 |
+
"""
|
120 |
+
)
|
121 |
|
122 |
gr.Markdown("## Step 1: Generate the keys.")
|
123 |
gr.Markdown("<hr />")
|