tf_ResNeSt_RegNet_model
tf_ResNeSt_RegNet_model copied to clipboard
tensorflow 2.x version of ResNeSt,RegNet,DETR
Blogger, I want to try to add it to maskrcnn, but I found that the return type is not the same as resnet. Can you write a mask rcnn with...
tensor use in the transformer,i see the encoder q,k is the same tensor which produced by the previous in the pytorch version code,but in this code we use dense api...
I take resnest as backbone in instance segmentation. However when trained model on my dataset, I got this error. ` File "/usr/local/lib/python3.6/dist-packages/keras/legacy/interfaces.py", line 91, in wrapper return func(*args, **kwargs) File...
It seems that semantic segmentation is not supported, only image classification is supported. When I build a model with `input_shape = [256, 256,3]` and `n_classes = 6`, it creates a...
thanks for you great work, I have a question related to your implemention of groupconv2d in keras. I compre the pytorch's implemention and your implemention, the official pytorch implemention of...
When trying this example code given for RegNet models: ``` #RegNetY600 model = get_model(model_name="RegNet",input_shape=input_shape,n_classes=n_classes, verbose=True,fc_activation=fc_activation,stage_depth=[1,3,7,4], stage_width=[48,112,256,608],stage_G=16,SEstyle_atten="SE") ``` This error shows up: > --------------------------------------------------------------------------- > > TypeError Traceback (most recent call...
I was wondering if it is normal for the build time to take >20 minutes for especially the deeper resnest models? It seems an extensive amount of recursion happens and...
Hello, Thanks for sharing your ready to train code, I was wondering if there any hope to have the pretrained weights on Image-Net ? I can contribute by adding Cascade-RCNN...