Skip to content
Advertisement

ValueError: Dimensions must be equal, but are 96 and 256 in tpu on tensorflow

I am trying to create a mnist gan which will use tpu. I copied the gan code from here.

Then i made some of my own modifications to run the code on tpu.for making changes i followed this tutorial which shows how to us tpu on tensorflow on tensorflow website.

but thats not working and raising an error here is my code.

JavaScript

and the final output is (not showing whole output cause i am in colab and i do not want copy output pf each cell one by one)

JavaScript

Advertisement

Answer

The training data has 60000 instances, if you split them into batches of size 256 you are left a smaller batch of size 60000 % 256 which is 96. Keras also assumes this as a batch if you dont drop it. So in train_step for this batch of size 96, the shape of real_output will be (96, 1) and the shape of fake_output will be (256, 1). As you set reduction to None in cross_entropy loss, the shape will be retained, so shape of real_loss will (96,) and shape of fake_loss will be (256,) then adding them will definitely result in an error.

You may solve this problem this way –

JavaScript

or

JavaScript
Advertisement