We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2e7b1a commit 4b2eb0bCopy full SHA for 4b2eb0b
include/fdeep/tensor.hpp
@@ -896,11 +896,10 @@ inline std::string show_tensor(const tensor& t)
896
const auto strs = fplus::transform(
897
fplus::fwd::show_float_fill_left(' ', max_length, 4), xs);
898
return fplus::show_cont(
899
- fplus::split_every(t.shape().size_dim_5_,
900
- fplus::split_every(t.shape().size_dim_4_,
901
- fplus::split_every(t.shape().height_,
902
- fplus::split_every(t.shape().width_,
903
- fplus::split_every(t.shape().depth_, strs))))));
+ fplus::split_every(t.shape().size_dim_4_,
+ fplus::split_every(t.shape().height_,
+ fplus::split_every(t.shape().width_,
+ fplus::split_every(t.shape().depth_, strs)))));
904
}
905
906
inline std::string show_tensors(const tensors& ts)
0 commit comments