paarthneekhara / text-to-image

Text to image synthesis using thought vectors

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issue with libjpeg

HassanAzzam opened this issue · comments

When I try to generate, console logs this output:

{
  gpu : 0
  noisemode : "random"
  name : "generation1"
  noisetype : "normal"
  batchSize : 32
  net : "celebA_25_net_G.t7"
  imsize : 1
  nz : 100
  display : 1
}
nn.Sequential {
  [input -> (1) -> (2) -> (3) -> (4) -> (5) -> (6) -> (7) -> (8) -> (9) -> (10) -> (11) -> (12) -> (13) -> (14) -> output]
  (1): nn.SpatialFullConvolution(100 -> 512, 4x4)
  (2): nn.SpatialBatchNormalization (4D) (512)
  (3): nn.ReLU
  (4): nn.SpatialFullConvolution(512 -> 256, 4x4, 2,2, 1,1)
  (5): nn.SpatialBatchNormalization (4D) (256)
  (6): nn.ReLU
  (7): nn.SpatialFullConvolution(256 -> 128, 4x4, 2,2, 1,1)
  (8): nn.SpatialBatchNormalization (4D) (128)
  (9): nn.ReLU
  (10): nn.SpatialFullConvolution(128 -> 64, 4x4, 2,2, 1,1)
  (11): nn.SpatialBatchNormalization (4D) (64)
  (12): nn.ReLU
  (13): nn.SpatialFullConvolution(64 -> 3, 4x4, 2,2, 1,1)
  (14): nn.Tanh
}
Images size: 	32 x 3 x 64 x 64	
Min, Max, Mean, Stdv	0.01557257771492	0.99922662973404	0.46208152188531	0.24795615762643	
Wrong JPEG library version: library is 90, caller expects 80

Then stops.

I am using libjpeg9b, I tried to use libjpeg6 but didn't work though and I can't get the required version.

Is there something to do with this issue?