Pallavi Ramicetty
Results
5
issues of
Pallavi Ramicetty
See [here](https://github.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/blob/master/grapher.py#L509) ``` graph_dict = {} for src_id, row in df.iterrows(): if row['below_obj_index'] != -1: graph_dict[src_id] = [row['below_obj_index']] if row['side_obj_index'] != -1: graph_dict[src_id] = [row['side_obj_index']] ```