cyber security
Browse files
app.py
CHANGED
@@ -62,6 +62,7 @@ with gr.Blocks() as demo:
|
|
62 |
|
63 |
# gr.HTML(counter)
|
64 |
|
|
|
65 |
gr.Markdown("""Enhancing Customer Engagement and Operational Efficiency with NLP
|
66 |
=========
|
67 |
|
@@ -75,6 +76,16 @@ https://www.kaggle.com/datasets/trainingdatapro/20000-customers-reviews-on-banks
|
|
75 |
|
76 |
[](https://hits.seeyoufarm.com)
|
77 |
""")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
with gr.Tab("Semantic Similarity Document Search (SSDS)"):
|
79 |
in_similar = gr.Textbox(placeholder="having credit card problem",
|
80 |
label="Issue",
|
@@ -118,6 +129,7 @@ With no need for jargon, SSDS delivers tangible value to our fintech operations.
|
|
118 |
Observability/Cyber Security:
|
119 |
------
|
120 |
Proactive Detection: Identify potential fraud threats and vulnerabilities in real-time.
|
|
|
121 |
Customer-Centric Approach: Gain insights into customer concerns, allowing us to address them promptly.
|
122 |
|
123 |
### issue:
|
|
|
62 |
|
63 |
# gr.HTML(counter)
|
64 |
|
65 |
+
|
66 |
gr.Markdown("""Enhancing Customer Engagement and Operational Efficiency with NLP
|
67 |
=========
|
68 |
|
|
|
76 |
|
77 |
[](https://hits.seeyoufarm.com)
|
78 |
""")
|
79 |
+
gr.Examples(
|
80 |
+
[
|
81 |
+
["having credit card problem", "having credit card problem"],
|
82 |
+
|
83 |
+
["low interest credit card", "low interest credit card"],
|
84 |
+
["upset customer", "upset customer"],
|
85 |
+
["what is the password", "what is the password"],
|
86 |
+
],
|
87 |
+
[in_similar, in_like]
|
88 |
+
)
|
89 |
with gr.Tab("Semantic Similarity Document Search (SSDS)"):
|
90 |
in_similar = gr.Textbox(placeholder="having credit card problem",
|
91 |
label="Issue",
|
|
|
129 |
Observability/Cyber Security:
|
130 |
------
|
131 |
Proactive Detection: Identify potential fraud threats and vulnerabilities in real-time.
|
132 |
+
|
133 |
Customer-Centric Approach: Gain insights into customer concerns, allowing us to address them promptly.
|
134 |
|
135 |
### issue:
|