test_torch_importer.cpp 13.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*M///////////////////////////////////////////////////////////////////////////////////////
//
//  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.
//
//
//                           License Agreement
//                For Open Source Computer Vision Library
//
// Copyright (C) 2013, OpenCV Foundation, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//   * Redistribution's of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//
//   * Redistribution's in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//
//   * The name of the copyright holders may not be used to endorse or promote products
//     derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/

#include "test_precomp.hpp"
#include "npy_blob.hpp"
#include <opencv2/dnn/shape_utils.hpp>
45
#include <opencv2/ts/ocl_test.hpp>
46

A
Alexander Alekhin 已提交
47
namespace opencv_test
48 49 50 51 52 53 54 55 56 57
{

using namespace std;
using namespace testing;
using namespace cv;
using namespace cv::dnn;

template<typename TStr>
static std::string _tf(TStr filename, bool inTorchDir = true)
{
58
    String path = "dnn/";
59 60 61
    if (inTorchDir)
        path += "torch/";
    path += filename;
62
    return findDataFile(path, false);
63 64 65 66 67
}

TEST(Torch_Importer, simple_read)
{
    Net net;
68 69
    ASSERT_NO_THROW(net = readNetFromTorch(_tf("net_simple_net.txt"), false));
    ASSERT_FALSE(net.empty());
70 71
}

72
static void runTorchNet(String prefix, int targetId = DNN_TARGET_CPU, String outLayerName = "",
73 74 75 76
                        bool check2ndBlob = false, bool isBinary = false)
{
    String suffix = (isBinary) ? ".dat" : ".txt";

77 78
    Net net = readNetFromTorch(_tf(prefix + "_net" + suffix), isBinary);
    ASSERT_FALSE(net.empty());
79

80 81 82
    net.setPreferableBackend(DNN_BACKEND_DEFAULT);
    net.setPreferableTarget(targetId);

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
    Mat inp, outRef;
    ASSERT_NO_THROW( inp = readTorchBlob(_tf(prefix + "_input" + suffix), isBinary) );
    ASSERT_NO_THROW( outRef = readTorchBlob(_tf(prefix + "_output" + suffix), isBinary) );

    if (outLayerName.empty())
        outLayerName = net.getLayerNames().back();

    net.setInput(inp, "0");
    std::vector<Mat> outBlobs;
    net.forward(outBlobs, outLayerName);
    normAssert(outRef, outBlobs[0]);

    if (check2ndBlob)
    {
        Mat out2 = outBlobs[1];
        Mat ref2 = readTorchBlob(_tf(prefix + "_output_2" + suffix), isBinary);
        normAssert(out2, ref2);
    }
}

TEST(Torch_Importer, run_convolution)
{
    runTorchNet("net_conv");
}

108 109 110 111 112
OCL_TEST(Torch_Importer, run_convolution)
{
    runTorchNet("net_conv", DNN_TARGET_OPENCL);
}

113 114
TEST(Torch_Importer, run_pool_max)
{
115 116 117 118 119 120
    runTorchNet("net_pool_max", DNN_TARGET_CPU, "", true);
}

OCL_TEST(Torch_Importer, run_pool_max)
{
    runTorchNet("net_pool_max", DNN_TARGET_OPENCL, "", true);
121 122 123 124 125 126 127
}

TEST(Torch_Importer, run_pool_ave)
{
    runTorchNet("net_pool_ave");
}

128 129 130 131 132
OCL_TEST(Torch_Importer, run_pool_ave)
{
    runTorchNet("net_pool_ave", DNN_TARGET_OPENCL);
}

133 134 135 136 137
TEST(Torch_Importer, run_reshape)
{
    runTorchNet("net_reshape");
    runTorchNet("net_reshape_batch");
    runTorchNet("net_reshape_single_sample");
138
    runTorchNet("net_reshape_channels", DNN_TARGET_CPU, "", false, true);
139 140 141 142 143 144 145 146 147
}

TEST(Torch_Importer, run_linear)
{
    runTorchNet("net_linear_2d");
}

TEST(Torch_Importer, run_paralel)
{
148
    runTorchNet("net_parallel", DNN_TARGET_CPU, "l5_torchMerge");
149 150 151 152
}

TEST(Torch_Importer, run_concat)
{
153 154 155 156 157 158 159 160
    runTorchNet("net_concat", DNN_TARGET_CPU, "l5_torchMerge");
    runTorchNet("net_depth_concat", DNN_TARGET_CPU, "", false, true);
}

OCL_TEST(Torch_Importer, run_concat)
{
    runTorchNet("net_concat", DNN_TARGET_OPENCL, "l5_torchMerge");
    runTorchNet("net_depth_concat", DNN_TARGET_OPENCL, "", false, true);
161 162 163 164 165 166 167
}

TEST(Torch_Importer, run_deconv)
{
    runTorchNet("net_deconv");
}

L
Li Peng 已提交
168 169 170 171 172
OCL_TEST(Torch_Importer, run_deconv)
{
    runTorchNet("net_deconv", DNN_TARGET_OPENCL);
}

173 174
TEST(Torch_Importer, run_batch_norm)
{
175
    runTorchNet("net_batch_norm", DNN_TARGET_CPU, "", false, true);
176 177
}

178 179 180 181 182
OCL_TEST(Torch_Importer, run_batch_norm)
{
    runTorchNet("net_batch_norm", DNN_TARGET_OPENCL, "", false, true);
}

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
TEST(Torch_Importer, net_prelu)
{
    runTorchNet("net_prelu");
}

TEST(Torch_Importer, net_cadd_table)
{
    runTorchNet("net_cadd_table");
}

TEST(Torch_Importer, net_softmax)
{
    runTorchNet("net_softmax");
    runTorchNet("net_softmax_spatial");
}

199 200 201 202 203 204
OCL_TEST(Torch_Importer, net_softmax)
{
    runTorchNet("net_softmax", DNN_TARGET_OPENCL);
    runTorchNet("net_softmax_spatial", DNN_TARGET_OPENCL);
}

205 206 207 208 209 210
TEST(Torch_Importer, net_logsoftmax)
{
    runTorchNet("net_logsoftmax");
    runTorchNet("net_logsoftmax_spatial");
}

211 212 213 214 215 216
OCL_TEST(Torch_Importer, net_logsoftmax)
{
    runTorchNet("net_logsoftmax", DNN_TARGET_OPENCL);
    runTorchNet("net_logsoftmax_spatial", DNN_TARGET_OPENCL);
}

217 218
TEST(Torch_Importer, net_lp_pooling)
{
219 220
    runTorchNet("net_lp_pooling_square", DNN_TARGET_CPU, "", false, true);
    runTorchNet("net_lp_pooling_power", DNN_TARGET_CPU, "", false, true);
221 222 223 224
}

TEST(Torch_Importer, net_conv_gemm_lrn)
{
225
    runTorchNet("net_conv_gemm_lrn", DNN_TARGET_CPU, "", false, true);
226 227 228 229
}

TEST(Torch_Importer, net_inception_block)
{
230
    runTorchNet("net_inception_block", DNN_TARGET_CPU, "", false, true);
231 232 233 234
}

TEST(Torch_Importer, net_normalize)
{
235
    runTorchNet("net_normalize", DNN_TARGET_CPU, "", false, true);
236 237
}

238 239 240 241 242
OCL_TEST(Torch_Importer, net_normalize)
{
    runTorchNet("net_normalize", DNN_TARGET_OPENCL, "", false, true);
}

D
Dmitry Kurtaev 已提交
243 244
TEST(Torch_Importer, net_padding)
{
245 246
    runTorchNet("net_padding", DNN_TARGET_CPU, "", false, true);
    runTorchNet("net_spatial_zero_padding", DNN_TARGET_CPU, "", false, true);
247
    runTorchNet("net_spatial_reflection_padding", DNN_TARGET_CPU, "", false, true);
D
Dmitry Kurtaev 已提交
248 249
}

250 251 252 253 254
TEST(Torch_Importer, net_non_spatial)
{
    runTorchNet("net_non_spatial", DNN_TARGET_CPU, "", false, true);
}

255 256 257 258 259
OCL_TEST(Torch_Importer, net_non_spatial)
{
    runTorchNet("net_non_spatial", DNN_TARGET_OPENCL, "", false, true);
}

260 261 262 263 264
TEST(Torch_Importer, ENet_accuracy)
{
    Net net;
    {
        const string model = findDataFile("dnn/Enet-model-best.net", false);
265 266
        net = readNetFromTorch(model, true);
        ASSERT_FALSE(net.empty());
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
    }

    Mat sample = imread(_tf("street.png", false));
    Mat inputBlob = blobFromImage(sample, 1./255);

    net.setInput(inputBlob, "");
    Mat out = net.forward();
    Mat ref = blobFromNPY(_tf("torch_enet_prob.npy", false));
    // Due to numerical instability in Pooling-Unpooling layers (indexes jittering)
    // thresholds for ENet must be changed. Accuracy of resuults was checked on
    // Cityscapes dataset and difference in mIOU with Torch is 10E-4%
    normAssert(ref, out, "", 0.00044, 0.44);

    const int N = 3;
    for (int i = 0; i < N; i++)
    {
        net.setInput(inputBlob, "");
        Mat out = net.forward();
        normAssert(ref, out, "", 0.00044, 0.44);
    }
}

289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
TEST(Torch_Importer, OpenFace_accuracy)
{
    const string model = findDataFile("dnn/openface_nn4.small2.v1.t7", false);
    Net net = readNetFromTorch(model);

    Mat sample = imread(findDataFile("cv/shared/lena.png", false));
    Mat sampleF32(sample.size(), CV_32FC3);
    sample.convertTo(sampleF32, sampleF32.type());
    sampleF32 /= 255;
    resize(sampleF32, sampleF32, Size(96, 96), 0, 0, INTER_NEAREST);

    Mat inputBlob = blobFromImage(sampleF32);

    net.setInput(inputBlob);
    Mat out = net.forward();

    Mat outRef = readTorchBlob(_tf("net_openface_output.dat"), true);
    normAssert(out, outRef);
}

309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
OCL_TEST(Torch_Importer, OpenFace_accuracy)
{
    const string model = findDataFile("dnn/openface_nn4.small2.v1.t7", false);
    Net net = readNetFromTorch(model);

    net.setPreferableBackend(DNN_BACKEND_DEFAULT);
    net.setPreferableTarget(DNN_TARGET_OPENCL);

    Mat sample = imread(findDataFile("cv/shared/lena.png", false));
    Mat sampleF32(sample.size(), CV_32FC3);
    sample.convertTo(sampleF32, sampleF32.type());
    sampleF32 /= 255;
    resize(sampleF32, sampleF32, Size(96, 96), 0, 0, INTER_NEAREST);

    Mat inputBlob = blobFromImage(sampleF32);

    net.setInput(inputBlob);
    Mat out = net.forward();

    Mat outRef = readTorchBlob(_tf("net_openface_output.dat"), true);
    normAssert(out, outRef);
}

OCL_TEST(Torch_Importer, ENet_accuracy)
{
    Net net;
    {
        const string model = findDataFile("dnn/Enet-model-best.net", false);
D
Dmitry Kurtaev 已提交
337 338
        net = readNetFromTorch(model, true);
        ASSERT_TRUE(!net.empty());
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
    }

    net.setPreferableBackend(DNN_BACKEND_DEFAULT);
    net.setPreferableTarget(DNN_TARGET_OPENCL);

    Mat sample = imread(_tf("street.png", false));
    Mat inputBlob = blobFromImage(sample, 1./255);

    net.setInput(inputBlob, "");
    Mat out = net.forward();
    Mat ref = blobFromNPY(_tf("torch_enet_prob.npy", false));
    // Due to numerical instability in Pooling-Unpooling layers (indexes jittering)
    // thresholds for ENet must be changed. Accuracy of resuults was checked on
    // Cityscapes dataset and difference in mIOU with Torch is 10E-4%
    normAssert(ref, out, "", 0.00044, 0.44);

    const int N = 3;
    for (int i = 0; i < N; i++)
    {
        net.setInput(inputBlob, "");
        Mat out = net.forward();
        normAssert(ref, out, "", 0.00044, 0.44);
    }
}

364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
// Check accuracy of style transfer models from https://github.com/jcjohnson/fast-neural-style
// th fast_neural_style.lua \
//   -input_image ~/opencv_extra/testdata/dnn/googlenet_1.png \
//   -output_image lena.png \
//   -median_filter 0 \
//   -image_size 0 \
//   -model models/eccv16/starry_night.t7
// th fast_neural_style.lua \
//   -input_image ~/opencv_extra/testdata/dnn/googlenet_1.png \
//   -output_image lena.png \
//   -median_filter 0 \
//   -image_size 0 \
//   -model models/instance_norm/feathers.t7
TEST(Torch_Importer, FastNeuralStyle_accuracy)
{
    std::string models[] = {"dnn/fast_neural_style_eccv16_starry_night.t7",
                            "dnn/fast_neural_style_instance_norm_feathers.t7"};
    std::string targets[] = {"dnn/lena_starry_night.png", "dnn/lena_feathers.png"};

    for (int i = 0; i < 2; ++i)
    {
        const string model = findDataFile(models[i], false);
        Net net = readNetFromTorch(model);

        Mat img = imread(findDataFile("dnn/googlenet_1.png", false));
        Mat inputBlob = blobFromImage(img, 1.0, Size(), Scalar(103.939, 116.779, 123.68), false);

        net.setInput(inputBlob);
        Mat out = net.forward();

        // Deprocessing.
        getPlane(out, 0, 0) += 103.939;
        getPlane(out, 0, 1) += 116.779;
        getPlane(out, 0, 2) += 123.68;
        out = cv::min(cv::max(0, out), 255);

        Mat ref = imread(findDataFile(targets[i]));
        Mat refBlob = blobFromImage(ref, 1.0, Size(), Scalar(), false);

        normAssert(out, refBlob, "", 0.5, 1.1);
    }
}

L
Li Peng 已提交
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
OCL_TEST(Torch_Importer, FastNeuralStyle_accuracy)
{
    std::string models[] = {"dnn/fast_neural_style_eccv16_starry_night.t7",
                            "dnn/fast_neural_style_instance_norm_feathers.t7"};
    std::string targets[] = {"dnn/lena_starry_night.png", "dnn/lena_feathers.png"};

    for (int i = 0; i < 2; ++i)
    {
        const string model = findDataFile(models[i], false);
        Net net = readNetFromTorch(model);

        net.setPreferableBackend(DNN_BACKEND_DEFAULT);
        net.setPreferableTarget(DNN_TARGET_OPENCL);

        Mat img = imread(findDataFile("dnn/googlenet_1.png", false));
        Mat inputBlob = blobFromImage(img, 1.0, Size(), Scalar(103.939, 116.779, 123.68), false);

        net.setInput(inputBlob);
        Mat out = net.forward();

        // Deprocessing.
        getPlane(out, 0, 0) += 103.939;
        getPlane(out, 0, 1) += 116.779;
        getPlane(out, 0, 2) += 123.68;
        out = cv::min(cv::max(0, out), 255);

        Mat ref = imread(findDataFile(targets[i]));
        Mat refBlob = blobFromImage(ref, 1.0, Size(), Scalar(), false);

        normAssert(out, refBlob, "", 0.5, 1.1);
    }
}

440
}