Plot requery weight values.
(ws, picker)
| 8 | |
| 9 | |
| 10 | def plot_requery_weights(ws, picker): |
| 11 | """Plot requery weight values.""" |
| 12 | fig, ax = plt.subplots() |
| 13 | weights = [x[1] for x in ws.history] |
| 14 | ax.plot(weights) |
| 15 | ax.set_xlabel("Iterations") |
| 16 | ax.set_ylabel("Utility") |
| 17 | plt.show() |
| 18 | |
| 19 | |
| 20 | def plot_ib_weights(ws, picker): |
nothing calls this directly
no outgoing calls
no test coverage detected