蒲尧

Results 10 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,...

```js let input = [ { id: '17', caption: '颜色', types: ['黑', '棕'] }, { id: '23', caption: '材质', types: ['牛皮'] }, { id: '24', caption: '尺码', types: ['40', '41',...

I'm sorry to tell you that this dataset is my master professor's private dataset. But if you still want to use it, tell me and I can help you to...

> Dear author, how can I obtain this private dataset? You can seek permission for the dataset from the corresponding author (Professor Shoujun ZHOU [[email protected]](mailto:[email protected])). Although I have it, I...

1. You can see, we only used the **labeled_bs** labels to calculate the supervise loss during training. https://github.com/Allenem/SSL4DSA/blob/7d529fd14e765cec4e12f2eedc3391c3acc09583/code/train_semisupervised_CNN_Transformer_PLCL.py#L328-L346 2. The skeleton folder was designed for another mission about the coronary...

It seems like the dimention index 1 is out of bounds, because `cannot identify errors: index 1 is out of bounds for axis 0 with size 1` during `loss.backward()`. I...