Anon
commited on
Commit
·
80451ed
1
Parent(s):
e15c23c
update hidden dimensions.
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -116,7 +116,7 @@ else:
|
|
| 116 |
# Render in rows of 2
|
| 117 |
items = filtered.to_dict(orient="records")
|
| 118 |
for item in items:
|
| 119 |
-
caption = f"{item['sparsity']} out of {item['sparsity_out_of']}"
|
| 120 |
gif_bytes = Path(item["path"]).read_bytes()
|
| 121 |
b64 = base64.b64encode(gif_bytes).decode("ascii")
|
| 122 |
|
|
|
|
| 116 |
# Render in rows of 2
|
| 117 |
items = filtered.to_dict(orient="records")
|
| 118 |
for item in items:
|
| 119 |
+
caption = f"{item['sparsity']} out of {item['sparsity_out_of']} for {item['features']} features and {item['hidden_dim']} hidden dimensions"
|
| 120 |
gif_bytes = Path(item["path"]).read_bytes()
|
| 121 |
b64 = base64.b64encode(gif_bytes).decode("ascii")
|
| 122 |
|