fine tune LLM
Browse files
app.py
CHANGED
@@ -91,18 +91,17 @@ With no need for jargon, SSDS delivers tangible value to our fintech operations.
|
|
91 |
Using Sentence Embedding to inject Public ML Banks Text Dataset @ https://github.com/kevinwkc/analytics/blob/master/ai/vectorDB.py
|
92 |
""")
|
93 |
|
94 |
-
|
|
|
|
|
|
|
|
|
|
|
95 |
in_like = gr.Textbox(placeholder="having credit card problem")
|
96 |
out_like = gr.Textbox(placeholder="like score")
|
97 |
|
98 |
btn_like = gr.Button("Find Like Score")
|
99 |
btn_like.click(fn=like, inputs=in_like, outputs=out_like)
|
100 |
|
101 |
-
|
102 |
-
with gr.Accordion("Future Improvement"):
|
103 |
-
gr.Markdown("""
|
104 |
-
tuning the distance for use case
|
105 |
-
""")
|
106 |
-
|
107 |
demo.launch()
|
108 |
|
|
|
91 |
Using Sentence Embedding to inject Public ML Banks Text Dataset @ https://github.com/kevinwkc/analytics/blob/master/ai/vectorDB.py
|
92 |
""")
|
93 |
|
94 |
+
with gr.Accordion("Future Improvement"):
|
95 |
+
gr.Markdown("""
|
96 |
+
tuning the distance for use case
|
97 |
+
""")
|
98 |
+
|
99 |
+
with gr.Tab("Fine Tune LLM"):
|
100 |
in_like = gr.Textbox(placeholder="having credit card problem")
|
101 |
out_like = gr.Textbox(placeholder="like score")
|
102 |
|
103 |
btn_like = gr.Button("Find Like Score")
|
104 |
btn_like.click(fn=like, inputs=in_like, outputs=out_like)
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
demo.launch()
|
107 |
|