(pkl_filename)
| 215 | ''' |
| 216 | |
| 217 | def load_graph_data(pkl_filename): |
| 218 | sensor_ids, sensor_id_to_ind, adj_mx = load_pickle(pkl_filename) |
| 219 | return sensor_ids, sensor_id_to_ind, adj_mx |
| 220 | |
| 221 | |
| 222 | def load_pickle(pickle_file): |
nothing calls this directly
no test coverage detected