explain
Browse files
app.py
CHANGED
|
@@ -221,6 +221,7 @@ With no need for jargon, SSDS delivers tangible value to our fintech operations.
|
|
| 221 |
""")
|
| 222 |
|
| 223 |
with gr.Tab("Explainable AI"):
|
|
|
|
| 224 |
|
| 225 |
gr.Markdown("""
|
| 226 |
Explain by Dataset
|
|
@@ -264,7 +265,7 @@ With no need for jargon, SSDS delivers tangible value to our fintech operations.
|
|
| 264 |
|
| 265 |
there is a point at 6500 far from subway and it has negative impact on price, despite is is close to store(dist_stores)
|
| 266 |
""")
|
| 267 |
-
|
| 268 |
|
| 269 |
with gr.Tab("Fine Tune LLM"):
|
| 270 |
in_like = gr.Textbox(placeholder="having credit card problem" , label="Issue",
|
|
@@ -398,5 +399,5 @@ Assumptions:
|
|
| 398 |
|
| 399 |
""")
|
| 400 |
|
| 401 |
-
demo.launch(allowed_paths=["./
|
| 402 |
|
|
|
|
| 221 |
""")
|
| 222 |
|
| 223 |
with gr.Tab("Explainable AI"):
|
| 224 |
+
df=pd.read_csv("./xgb/re.csv")
|
| 225 |
|
| 226 |
gr.Markdown("""
|
| 227 |
Explain by Dataset
|
|
|
|
| 265 |
|
| 266 |
there is a point at 6500 far from subway and it has negative impact on price, despite is is close to store(dist_stores)
|
| 267 |
""")
|
| 268 |
+
gr.DataFrame(df)
|
| 269 |
|
| 270 |
with gr.Tab("Fine Tune LLM"):
|
| 271 |
in_like = gr.Textbox(placeholder="having credit card problem" , label="Issue",
|
|
|
|
| 399 |
|
| 400 |
""")
|
| 401 |
|
| 402 |
+
demo.launch(allowed_paths=["./"])
|
| 403 |
|