Abe

Results 20 issues of Abe

Thank you for the great work. I'm currently working on ViT and had a question. It seems that the code is based on fixed input image size. How would the...

The code is written w.r.t batch size of 128. If i'm using say batch of 32, do i need to change lr accordingly? ex. 0.1 (batch=128) --> 0.025 (batch=32) Thank...

@AlexeyAB Is there a way to zoom in and label the object? I'm trying to label small objects as well as big objects and was wondering if there's a way...

want enhancement

i have added perceiver to my current network and it seems like network can't be trained. AP is zero all the way and doesn't train at all. Does the code...

I saw that you used optical flow to determine the scene is static or not. What was the threshold value you used? Thank you!

Is there a way to show loss graph during training like tensorflow?

In equation 4, ![Screenshot from 2019-05-15 11-07-02](https://user-images.githubusercontent.com/36392866/57743820-97fb1d00-7701-11e9-9c81-40589327a648.png) what is the meaning of P(w,h)-1 part? why are you subtracting 1? Thank you in advance

It seems like this module is not trained with mixed precision. Do you plan on adding this feature? Thank you,

Quick question regarding inverted residual block. if expand_ratio == 1: self.conv = nn.Sequential( # dw nn.Conv2d(hidden_dim, hidden_dim, 3, stride, 1, groups=hidden_dim, bias=False), nn.BatchNorm2d(hidden_dim), nn.ReLU6(inplace=True), # pw-linear nn.Conv2d(hidden_dim, oup, 1, 1,...

First of all, thank you for the wonderful work. I have a quick question though. I see you have set num_head = 6, meaning you iteratively update bounding box results...