aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h')
-rw-r--r--tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h b/tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h
index b60002c844..4391379833 100644
--- a/tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h
+++ b/tests/datasets_new/DepthwiseSeparableConvolutionLayerDataset.h
@@ -66,12 +66,12 @@ public:
std::stringstream description;
description << "In=" << *_src_it << ":";
description << "Filter=" << *_filter_it << ":";
- description << "Depthwise Out=" << *_depthwise_out_it << ":";
+ description << "DepthwiseOut=" << *_depthwise_out_it << ":";
description << "Weights=" << *_weights_it << ":";
description << "Biases=" << *_biases_it << ":";
description << "Out=" << *_dst_it << ":";
- description << "Depthwise Info=" << *_depthwise_infos_it;
- description << "Pointwise Info=" << *_pointwise_infos_it;
+ description << "DepthwiseInfo=" << *_depthwise_infos_it << ":";
+ description << "PointwiseInfo=" << *_pointwise_infos_it;
return description.str();
}