Commit c734e5fd authored by Khalique's avatar Khalique
Browse files

change dilation value

parent 0a86e369
......@@ -573,8 +573,8 @@ struct tf_parser
if(pad_mode.find("SAME") != std::string::npos)
{
op.padding_mode = op::padding_mode_t::same;
op.padding[0] = op::calculate_padding(op.lengths[0], 0);
op.padding[1] = op::calculate_padding(op.lengths[1], 0);
op.padding[0] = op::calculate_padding(op.lengths[0], 1);
op.padding[1] = op::calculate_padding(op.lengths[1], 1);
}
else if(pad_mode.find("VALID") != std::string::npos)
{
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment