Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1078,7 +1078,7 @@ with ui.navset_card_tab(id="tab"):
|
|
| 1078 |
fig, ax = plt.subplots()
|
| 1079 |
|
| 1080 |
for i, loss_rate in enumerate(loss_rates):
|
| 1081 |
-
ax.plot(
|
| 1082 |
|
| 1083 |
ax.legend()
|
| 1084 |
ax.set_xlabel('Params')
|
|
|
|
| 1078 |
fig, ax = plt.subplots()
|
| 1079 |
|
| 1080 |
for i, loss_rate in enumerate(loss_rates):
|
| 1081 |
+
ax.plot(params[i], loss_rate, label=labels[i])
|
| 1082 |
|
| 1083 |
ax.legend()
|
| 1084 |
ax.set_xlabel('Params')
|