Open EyuphanMandiraci opened 1 year ago
Same issue. Did you fix it?
I got the same problem. Any fixes so far?
Change from tensorflow.keras.optimizers import SGD
to from tensorflow.keras.optimizers.legacy import SGD
Change training = np.array(training)
to training = np.array(training, dtype=object)
The path for the main.py file can be found on the error message.
Thank you very much, this worked for me
I have managed to fix the error by fixing the main.py (neuralintents source file):
Change
from tensorflow.keras.optimizers import SGD
tofrom tensorflow.keras.optimizers.legacy import SGD
Changetraining = np.array(training)
totraining = np.array(training, dtype=object)
The path for the main.py file can be found on the error message.
this worked for me too ty
Please help, im having this error but idk how to edit the package, like I want to implement the fix but idk how
I have managed to fix the error by fixing the main.py (neuralintents source file):
Change
from tensorflow.keras.optimizers import SGD
tofrom tensorflow.keras.optimizers.legacy import SGD
Changetraining = np.array(training)
totraining = np.array(training, dtype=object)
The path for the main.py file can be found on the error message.
how do I implement the changes and download the updated package??
Hello my code and error in the image.