oarriaga / paz

Hierarchical perception library in Python for pose estimation, object detection, instance segmentation, keypoint estimation, face recognition, etc.
https://oarriaga.github.io/paz/
MIT License
601 stars 99 forks source link

Bug in spatial_transformer_network's code #156

Open AyushSharma2000 opened 2 years ago

AyushSharma2000 commented 2 years ago

Screenshot 2021-08-05 at 11 01 42 PM Screenshot 2021-08-05 at 11 08 40 PM

Environment:

Google Colaboratory. Tensorflow version 2.5.0 Keras version 2.4.x

Tried running the train.py file in examples/Spatial_Transformer_Networks/ and received an error on passing the MNIST dataset present in the STN repository. No changes were made to the code other than changing the file path.

The second screenshot shows the remaining portion of the last line of error present in the first screenshot.

zjhJOJO commented 1 year ago

i met the same bug, can anyone helpful offer a solution?

Ataei67 commented 2 months ago

change the compute_output_shape function in layer.py file to this solved my problem. def compute_output_shape(self, input_shapes): height, width = self.output_size num_channels = input_shapes[0][-1] return tf.constant([1, height, width, num_channels])