When I'm trying to create a resnet network (e.g v1_50) I got the following error
TypeError: cannot convert dictionary update sequence element #0 to a sequence
I suspect that this is due to the following line
# Convert end_points_collection into a dictionary of end_points.
end_points = dict(tf.get_collection(end_points_collection))
in the resnet_v1.py file.