Skip to content

Commit

Permalink
Merge pull request #173 from Saren-Arterius/master
Browse files Browse the repository at this point in the history
Fix requirements
  • Loading branch information
luomai committed Nov 3, 2019
2 parents 5734a98 + 7ef4d32 commit e7d26c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion model.py
Expand Up @@ -24,7 +24,7 @@ def get_G(input_shape):
n = nn

n = Conv2d(64, (3, 3), (1, 1), padding='SAME', W_init=w_init, b_init=None)(n)
n = BatchNorm(gamma_init=g_init)(n)
n = BatchNorm2d(gamma_init=g_init)(n)
n = Elementwise(tf.add)([n, temp])
# B residual blacks end

Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
@@ -1,2 +1,4 @@
tensorlayer>=2.0.0
tensorflow>=2.0.0
tensorflow>=2.0.0b1
numpy==1.16.1
easydict==1.9

0 comments on commit e7d26c4

Please sign in to comment.