junyanz / iGAN

Interactive Image Generation via Generative Adversarial Networks
MIT License
3.97k stars 591 forks source link

About Theano version #29

Open Cndbk opened 4 years ago

Cndbk commented 4 years ago

Theano1.0 has changed the interface of the function- image

The original interface was: class GpuAllocEmpty(GpuOp); but now: class GpuAllocEmpty(HideC, AllocEmpty);

What should I do if I want to change to the corresponding interface? Thank you.

Cndbk commented 4 years ago

Theano1.0 has changed the interface of the function- image

The original interface was: class GpuAllocEmpty(GpuOp); but now: class GpuAllocEmpty(HideC, AllocEmpty);

What should I do if I want to change to the corresponding interface? Thank you.

Initialization of this new function is: def init(self, dtype, context_name): self.dtype = dtype self.context_name = context_name