Longbin Yan

Results 4 issues of Longbin Yan

Hi, which versons of mmdet,mmseg,mmcls do you used?

Hi, can this onnx model be converted to .trt model ?

thanks for your great repo. I put **ssd300_scratchdet_coco.py** into folder of mmdetection/configs; put **ssd_root34_300.py** into mmdetection/mmdet/model/backbones, and put **ssdbn_head.py** into mmdetection/mmdet/model/anchor_heads. run **./tools/train.py configs/ssd300_scratchdet_coco.py**, there are some errors: **None is...

``` import torch import torch.nn as nn import torch_pruning as tp class Residual(nn.Module): def __init__(self, fn): super().__init__() self.fn = fn def forward(self, x): return self.fn(x) + x class CMUNeXtBlock(nn.Module): def...