File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -481,8 +481,8 @@ def test_mog_models(self):
481
481
l2 = keras .layers .Dense (10 , activation = 'relu' )
482
482
l3 = keras .layers .Dense (10 , activation = 'relu' )
483
483
484
- def norm (l ):
485
- return l # keras.layers.BatchNormalization()
484
+ def norm (lr ):
485
+ return lr # keras.layers.BatchNormalization()
486
486
487
487
x_network = l3 (norm (l2 (norm (l1 (x_input )))))
488
488
Original file line number Diff line number Diff line change @@ -127,8 +127,8 @@ def test_2sls(self):
127
127
a = np .random .normal (size = (d_w , d_t ))
128
128
b = np .random .normal (size = (d_w , d_y ))
129
129
x = np .random .uniform (size = (n , d_x )) + e
130
- p = x + z * e + w @ a + np .random .uniform (size = (n , d_t ))
131
- y = p * x + e + w @ b
130
+ p = x + z * e + w @ a + np .random .uniform (size = (n , d_t ))
131
+ y = p * x + e + w @ b
132
132
133
133
losses = []
134
134
marg_effs = []
You can’t perform that action at this time.
0 commit comments