kevinhug commited on
Commit
2fd5b7f
·
1 Parent(s): a1d18f3

fine tune LLM

Browse files
Files changed (1) hide show
  1. app.py +6 -7
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
- with gr.Tab("Fine Tune LLM")
 
 
 
 
 
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