add counter
Browse files
app.py
CHANGED
@@ -4,13 +4,7 @@ import gradio as gr
|
|
4 |
|
5 |
'''
|
6 |
https://huggingface.co/spaces/kevinhug/clientX
|
7 |
-
|
8 |
-
https://dash.elfsight.com
|
9 |
'''
|
10 |
-
counter="""
|
11 |
-
<script src="https://static.elfsight.com/platform/platform.js" data-use-service-core defer></script>
|
12 |
-
<div class="elfsight-app-5f3e8eb9-9103-490e-9999-e20aa4157dc7" data-elfsight-app-lazy></div>
|
13 |
-
"""
|
14 |
|
15 |
'''
|
16 |
SIMILAR VECTOR DB SEARCH
|
@@ -125,6 +119,8 @@ Using Sentence Embedding to inject Public ML Banks Text Dataset @ https://github
|
|
125 |
btn_like = gr.Button("Classify Like Score")
|
126 |
btn_like.click(fn=like, inputs=in_like, outputs=out_like)
|
127 |
gr.Markdown("""
|
|
|
|
|
128 |
As a Data Scientist with a decades of financial industry experience, I recognize the paramount importance of staying closely tuned to our customer's needs and opinions. In this app, Fine Tune LLM, we have shown how fine-tuning a Language Model (LLM) on a custom dataset can provide valuable insights into customer sentiment across crucial areas such as service, sales, point of failure, product, and emerging trends.
|
129 |
|
130 |
Objective:
|
@@ -132,5 +128,16 @@ Objective:
|
|
132 |
Our aim is to extract meaningful insights from customer interactions to improve our services, products, and overall customer experience. This analysis will help us understand what our customers are discussing and how they feel about different aspects of our business.
|
133 |
""")
|
134 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
demo.launch()
|
136 |
|
|
|
4 |
|
5 |
'''
|
6 |
https://huggingface.co/spaces/kevinhug/clientX
|
|
|
|
|
7 |
'''
|
|
|
|
|
|
|
|
|
8 |
|
9 |
'''
|
10 |
SIMILAR VECTOR DB SEARCH
|
|
|
119 |
btn_like = gr.Button("Classify Like Score")
|
120 |
btn_like.click(fn=like, inputs=in_like, outputs=out_like)
|
121 |
gr.Markdown("""
|
122 |
+
Smart Insights: Elevating Customer Engagement Through Sentiment Analysis
|
123 |
+
=========
|
124 |
As a Data Scientist with a decades of financial industry experience, I recognize the paramount importance of staying closely tuned to our customer's needs and opinions. In this app, Fine Tune LLM, we have shown how fine-tuning a Language Model (LLM) on a custom dataset can provide valuable insights into customer sentiment across crucial areas such as service, sales, point of failure, product, and emerging trends.
|
125 |
|
126 |
Objective:
|
|
|
128 |
Our aim is to extract meaningful insights from customer interactions to improve our services, products, and overall customer experience. This analysis will help us understand what our customers are discussing and how they feel about different aspects of our business.
|
129 |
""")
|
130 |
|
131 |
+
|
132 |
+
'''
|
133 |
+
https://dash.elfsight.com
|
134 |
+
'''
|
135 |
+
counter="""
|
136 |
+
<script src="https://static.elfsight.com/platform/platform.js" data-use-service-core defer></script>
|
137 |
+
<div class="elfsight-app-5f3e8eb9-9103-490e-9999-e20aa4157dc7" data-elfsight-app-lazy></div>
|
138 |
+
"""
|
139 |
+
|
140 |
+
gr.HTML(counter)
|
141 |
+
|
142 |
demo.launch()
|
143 |
|