We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 106bfcf commit 356a6ccCopy full SHA for 356a6cc
src/caffe/test/test_filler.cpp
@@ -257,16 +257,16 @@ TYPED_TEST(GaussianFillerTest, TestFill) {
257
}
258
259
TYPED_TEST(GaussianFillerTest, TestFill1D) {
260
- vector<int> blob_shape(1, 25);
261
- const TypeParam tolerance = TypeParam(5);
+ vector<int> blob_shape(1, 125);
+ const TypeParam tolerance = TypeParam(3);
262
this->test_params(blob_shape, tolerance);
263
264
265
TYPED_TEST(GaussianFillerTest, TestFill2D) {
266
vector<int> blob_shape;
267
blob_shape.push_back(8);
268
- blob_shape.push_back(3);
269
+ blob_shape.push_back(15);
270
271
272
0 commit comments