Revert "setting canonical random seed"
authorEvan Shelhamer <shelhamer@imaginarynumber.net>
Wed, 21 May 2014 05:33:29 +0000 (22:33 -0700)
committerEvan Shelhamer <shelhamer@imaginarynumber.net>
Wed, 21 May 2014 05:33:29 +0000 (22:33 -0700)
1701 is the canonical random seed, and as this test makes only one call
for seeding there's no need for a member var.

src/caffe/test/test_argmax_layer.cpp

index ab2d75b..c4150e5 100644 (file)
@@ -22,7 +22,7 @@ class ArgMaxLayerTest : public ::testing::Test {
   ArgMaxLayerTest()
       : blob_bottom_(new Blob<Dtype>(20, 10, 1, 1)),
         blob_top_(new Blob<Dtype>()) {
-    Caffe::set_random_seed(this->seed_);
+    Caffe::set_random_seed(1701);
     // fill the values
     FillerParameter filler_param;
     GaussianFiller<Dtype> filler(filler_param);