蒲尧

Results 5 comments of 蒲尧

> This project is a great framework. But I have some question to ask. > > 1. I notice that in preprocessing phase, you crop each image into a box...

> > Hello, thank you for your work. I am very interested in your work and would like to reproduce your code. Is there anything special about your code when...

> > > > hello, can you tell me how to implement the maxpool branch ? I feel confused about how to keep the size of feature map the same...

沙发 + :star:,支持 [@眠云(mianyun.yt)](https://yuque.antfin-inc.com/mianyun.yt) 师兄,貌似外放访问不到你的语雀 :pensive:

I fixed it by doing like this in the `data_loader.py`: ```py transform3 = transforms.Compose([ transforms.Resize(config.image_size), transforms.ToTensor(), transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5))]) transform1 = transforms.Compose([ transforms.Resize(config.image_size), transforms.ToTensor(), transforms.Normalize((0.5, ), (0.5,...