Tyler Luan

Results 60 comments of Tyler Luan

try [this](https://github.com/ykk648/DFDNet/blob/whole/dfdnet_for_face_dataset.py)

scrfd模型在转onnx的时候作者指定宽高了,代码里没说

```python class EcaLayer(nn.Module): def __init__(self, channels, gamma=2, b=1): super(EcaLayer, self).__init__() self.avg_pool = nn.AdaptiveAvgPool2d(1) t = int(abs((math.log(channels, 2) + b) / gamma)) k_size = t if t % 2 else t...

@zc402 I have tested your codes, it's really awsome , thanks a lot.

``` server: - appname: live live: true hls: true api: true flv: true - appname: ttt1 live: true hls: true api: true flv: true - appname: ttt2 live: true hls:...

分享的公众号链接打开闪退有办法吗?

I have converted the model to onnx success: `torch.onnx.export(model, img, './test.onnx', verbose=True, opset_version=opset_version, input_names=input_names, output_names=output_names, dynamic_axes=dynamic_axes) `

@xddlj try opset_version = 13