Plot IB weight values.
(ws, picker)
| 18 | |
| 19 | |
| 20 | def plot_ib_weights(ws, picker): |
| 21 | """Plot IB weight values.""" |
| 22 | fig, ax = plt.subplots(2, sharex=True) |
| 23 | ax[0].plot(picker.deltas) |
| 24 | ax[0].set_ylabel("delta(m)") |
| 25 | ax[1].plot(picker.betas) |
| 26 | ax[1].set_ylabel("Beta") |
| 27 | ax[0].set_xlabel("Iterations") |
| 28 | plt.show() |
| 29 | |
| 30 | |
| 31 | def draw_clusters( |
nothing calls this directly
no outgoing calls
no test coverage detected