Hello,
I’m currently working on UNQ_C6 and I’m currently getting this error
Here’s the algorithm I’m using :
- Using the get_noise() function attached to the device with rows, and columns needed to create a NoisyVectors.
- Getting the fakeimages through a detached gen using the NoisyVectors.
- Calculating the FakeImages loss by using the criterion of disc results of fake images compared to a matrix of 0’s and storing it to LossFake
- Calculating the RealImages loss by using the criterion of disc results of real images compared to a matrix of 1’s and storing it to LossReal
- Calculate the disc_loss by passing the LossFake, and LossReal results to criterion .
Have any suggestions?