Commit e20d1399 authored by Khalique's avatar Khalique
Browse files

formatting

parent d1efd555
...@@ -695,8 +695,10 @@ struct tf_parser ...@@ -695,8 +695,10 @@ struct tf_parser
{ {
std::vector<size_t> dims; std::vector<size_t> dims;
auto input_dims = s.dim(); auto input_dims = s.dim();
std::transform(input_dims.begin(), input_dims.end(), std::back_inserter(dims), std::transform(input_dims.begin(),
[](tensorflow::TensorShapeProto_Dim dim) { return dim.size(); }); input_dims.end(),
std::back_inserter(dims),
[](tensorflow::TensorShapeProto_Dim dim) { return dim.size(); });
return dims; return dims;
} }
}; };
......
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