Pete Tae-hoon Kim

Results 9 comments of Pete Tae-hoon Kim

The comment of @cheetah132 was very helpful! One more thing I found (on Mac OSX) is, when I installed ```conda install libgcc```, cmake selects anaconda's c++ compiler and causes weird...

No update yet? I'm waiting for the update. I tried the latest VCP driver from SiliconLabs, but it did not work.

@kuaikuaikim Hello, I have the same issue although I tried it using python 2.7.15 and pytorch 0.2.0+0b92e5c.

add an option, --imageSize 32 when you run it.

But, transpose(1,2).transpose(2,3) seems not to rearrange the internal array. torch.FloatTensor(1,2,3,4).stride() and torch.FloatTensor(1,2,3,4).transpose(1,2).transpose(2,3).stride() are (24, 12, 4, 1) and (24, 4, 1, 12), respectively, while torch.FloatTensor(1,3,4,2).stride() is (24, 8, 2, 1)....

Thank you. Meanwhile I'll use permute (or transpose) and then contiguous(). It seems to work properly so far :)

I dump all that I tried: ``` [GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import torch >>> from torchvision...

Hello, it worked perfectly on pytorch 0.1.11, but I got this issue on 0.1.12. I tested on 0.1.12 + Python 3.6.0 Anaconda: had the issue 0.1.11 + Python 3.6.0 Anaconda:...

Thank you. I guess, it may be related to 'https://discuss.pytorch.org/t/variable-no-attribute-creator/2866', which says pytorch 0.1.12 refactored autograd.