I am getting above error in the below line of code:
from tensorflow.initializers import random_uniform
When I run the same code file on Python 2.7.17 TensorFlow 1.15.0, I dont get the above error, but I get the following error:
SyntaxError: invalid syntax
in Line: self.state_memory=np.zeros((self.mem_size,*input_shape))
Somehow, it doesnt recognise the * before the input_shape variable.
Github link of the code: https://github.com/philtabor/Youtube-Code-Repository/blob/master/ReinforcementLearning/PolicyGradient/DDPG/pendulum/tensorflow/ddpg_orig_tf.py
Im new to Tensorflow and python. Is there something very basic that I am missing?