Closed patagona-snayyer closed 4 years ago
When I run the command: retinanet-train csv path/to/annotations.csv path/to/classes.csv
I get this error :
C:\Users\Saahil Nayyer\AppData\Roaming\Python\Python37\site-packages\keras_resnet\layers_batch_normalization.py:17 call return super(BatchNormalization, self).call(training=(not self.freeze), args, **kwargs)
TypeError: type object got multiple values for keyword argument 'training'
I looked up the reason for the error and it turns out the first argument in call() should be self perhaps, but that again doesn't really help.
After many failed attempts with Faster-RCNN I have switched to Keras, please help me I'm stuck. Thank you in advance!
I fixed it by updating Keras pip install --upgrade keras==2.3.0
pip install --upgrade keras==2.3.0
Thank you @damasubaie . It worked.
When I run the command: retinanet-train csv path/to/annotations.csv path/to/classes.csv
I get this error :
C:\Users\Saahil Nayyer\AppData\Roaming\Python\Python37\site-packages\keras_resnet\layers_batch_normalization.py:17 call return super(BatchNormalization, self).call(training=(not self.freeze), args, **kwargs)
I looked up the reason for the error and it turns out the first argument in call() should be self perhaps, but that again doesn't really help.
After many failed attempts with Faster-RCNN I have switched to Keras, please help me I'm stuck. Thank you in advance!