struct ngraph::op::InterpolateIEAttrs

#include <interp.hpp>

struct InterpolateIEAttrs
{
    // fields

    int height = -1;
    int width = -1;
    float zoom_factor = 0;
    float shrink_factor = 0;
    float scale_factor = 1.0;
    bool align_corners = true;
    bool antialias = true;
    std::string mode = "";
    int pad_beg = 0;
    int pad_end = 0;
};