Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -108,7 +108,7 @@ def main():
|
|
108 |
|
109 |
st.header('Average Cosine Distance Scores')
|
110 |
st.caption('*This box plot is interactive: Hover on the boxes to display values. Click on the legend items to filter models.*')
|
111 |
-
fig = px.box(outputs, x='model', y='cos', color='model', boxmean=
|
112 |
fig.update_xaxes(title_text='Model')
|
113 |
fig.update_yaxes(title_text='Cosine Distance')
|
114 |
st.plotly_chart(fig, use_container_width=True)
|
|
|
108 |
|
109 |
st.header('Average Cosine Distance Scores')
|
110 |
st.caption('*This box plot is interactive: Hover on the boxes to display values. Click on the legend items to filter models.*')
|
111 |
+
fig = px.box(outputs, x='model', y='cos', color='model', boxmean='sd')
|
112 |
fig.update_xaxes(title_text='Model')
|
113 |
fig.update_yaxes(title_text='Cosine Distance')
|
114 |
st.plotly_chart(fig, use_container_width=True)
|