1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

Fixed virtual try on sample

This commit is contained in:
Liubov Batanina
2020-06-04 09:36:52 +03:00
parent 1bec7ca540
commit 5ffc5bca7c
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -806,6 +806,10 @@ void ONNXImporter::populateNet(Net dstNet)
{
layerParams.type = "ELU";
}
else if (layer_type == "Tanh")
{
layerParams.type = "TanH";
}
else if (layer_type == "PRelu")
{
layerParams.type = "PReLU";