mirror of
https://github.com/opencv/opencv.git
synced 2025-08-06 14:36:36 +08:00
Merge pull request #17014 from dkurt:dnn_onnx_elu
This commit is contained in:
commit
b745e1c43a
@ -777,6 +777,10 @@ void ONNXImporter::populateNet(Net dstNet)
|
||||
{
|
||||
layerParams.type = "ReLU";
|
||||
}
|
||||
else if (layer_type == "Elu")
|
||||
{
|
||||
layerParams.type = "ELU";
|
||||
}
|
||||
else if (layer_type == "PRelu")
|
||||
{
|
||||
layerParams.type = "PReLU";
|
||||
|
Loading…
Reference in New Issue
Block a user