Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -97,7 +97,7 @@ with gr.Blocks() as demo:
|
|
| 97 |
# Tag vs Tag plot
|
| 98 |
|
| 99 |
This scatterplot displays for each model a comparison between the rates of two tags, which you can select in the menu.
|
| 100 |
-
Additionally, you can filter the categories.
|
| 101 |
|
| 102 |
- **Tags**:
|
| 103 |
- **A**: LLM complies and directly answers question, no warning.
|
|
@@ -116,6 +116,13 @@ with gr.Blocks() as demo:
|
|
| 116 |
gr.Plot(label="plot", format="png",), allow_flagging="never",
|
| 117 |
)
|
| 118 |
with gr.TabItem("Helpfulness vs Harmfulness"):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
gr.Interface(
|
| 120 |
plot_scatter_tab3,
|
| 121 |
[
|
|
|
|
| 97 |
# Tag vs Tag plot
|
| 98 |
|
| 99 |
This scatterplot displays for each model a comparison between the rates of two tags, which you can select in the menu.
|
| 100 |
+
Additionally, you can filter the categories and choose the color of the datapoints based on model or size.
|
| 101 |
|
| 102 |
- **Tags**:
|
| 103 |
- **A**: LLM complies and directly answers question, no warning.
|
|
|
|
| 116 |
gr.Plot(label="plot", format="png",), allow_flagging="never",
|
| 117 |
)
|
| 118 |
with gr.TabItem("Helpfulness vs Harmfulness"):
|
| 119 |
+
gr.Markdown("""
|
| 120 |
+
# Tag vs Tag plot
|
| 121 |
+
|
| 122 |
+
This scatterplot displays for each model the comparison between the rate of Helpful vs Harmful responses.
|
| 123 |
+
You can filter the categories and choose the color of the datapoints based on model or size.
|
| 124 |
+
|
| 125 |
+
""")
|
| 126 |
gr.Interface(
|
| 127 |
plot_scatter_tab3,
|
| 128 |
[
|