For the following TensorFlow error:
AttributeError: 'module' object has no attribute 'global_variables_initializer'
You need to do a find and replace, of “global_variables_initializer” to “tf.initialize_all_variables” (this was changed in an upgrade)
Thank you! Almost ended up installing an older Tensorflow version, but this saved a lot of time
Thank you!