sunghoonim / DPSNet

[ICLR19] DPSNet: End-to-end Deep Plane Sweep Stereo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incompatible problem with scipy

shuuwook opened this issue · comments

Hi, I want to ask what version of scipy module you used.

When I used scipy 0.19.1, [custom_transforms.py line 64] got warning message.

"From scipy 0.13.0, the output shape of zoom() is calculated "
"with round() instead of int() - for these inputs the size of "
"the returned array has changed."

This message is occured because entering in [ if output_shape != output_shape_old: ].

As a result of this warning, I think, [submodule.py line 120] gives cuda runtime error giving wrong size's inputs to convolution network(self.firstconv).

Below things are [image size after zoom / image size before zoom]
(311, 484) (310, 483)
(370, 360) (370, 359)
(252, 394) (251, 393)
(352, 568) (352, 567)
......
(411, 614) (410, 613)
(319, 431) (319, 430)
(346, 528) (346, 527)
(256, 532) (255, 532)
(306, 578) (305, 577)

I would appreciate it so mush if you can help me about this problem.

It is not problem of code, but typical problem of RTX series.