kevinhug commited on
Commit
f7250d5
·
1 Parent(s): ccaec75

add counter

Browse files
Files changed (1) hide show
  1. app.py +11 -13
app.py CHANGED
@@ -46,19 +46,27 @@ def like(issue):
46
  https://www.gradio.app/docs/interface
47
  '''
48
 
 
49
 
 
 
 
 
 
 
 
50
 
 
51
 
52
- with gr.Blocks() as demo:
53
  gr.Markdown("""Enhancing Customer Engagement and Operational Efficiency with NLP
54
  =========
55
 
56
  1) Semantic Similarity Document Search (SSDS)
57
  2) Fine Tune LLM
58
 
59
- Data Scientist: Kevin Wong, [email protected], 416-903-7937
60
 
61
- Open source ml bank dataset
62
  https://www.kaggle.com/datasets/trainingdatapro/20000-customers-reviews-on-banks/?select=Banks.csv
63
  """)
64
  with gr.Tab("Semantic Similarity Document Search (SSDS)"):
@@ -129,15 +137,5 @@ Our aim is to extract meaningful insights from customer interactions to improve
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
 
 
46
  https://www.gradio.app/docs/interface
47
  '''
48
 
49
+ with gr.Blocks() as demo:
50
 
51
+ '''
52
+ https://dash.elfsight.com
53
+ '''
54
+ counter="""
55
+ <script src="https://static.elfsight.com/platform/platform.js" data-use-service-core defer></script>
56
+ <div class="elfsight-app-5f3e8eb9-9103-490e-9999-e20aa4157dc7" data-elfsight-app-lazy></div>
57
+ """
58
 
59
+ gr.HTML(counter)
60
 
 
61
  gr.Markdown("""Enhancing Customer Engagement and Operational Efficiency with NLP
62
  =========
63
 
64
  1) Semantic Similarity Document Search (SSDS)
65
  2) Fine Tune LLM
66
 
67
+ #### Data Scientist: Kevin Wong, [email protected], 416-903-7937
68
 
69
+ ##### Open source ml bank dataset
70
  https://www.kaggle.com/datasets/trainingdatapro/20000-customers-reviews-on-banks/?select=Banks.csv
71
  """)
72
  with gr.Tab("Semantic Similarity Document Search (SSDS)"):
 
137
  """)
138
 
139
 
 
 
 
 
 
 
 
 
 
 
140
  demo.launch()
141