The function `fpn_top_down_feature_maps` is not working with python 3 and cause the following error ``` line 225, in fpn_top_down_feature_maps reversed(zip(output_feature_map_keys, output_feature_maps_list))) TypeError: 'zip' object is not reversible ``` The workaround is to change `zip(...)` into `list(zip(...))`