Skip to content

Commit

Permalink
fixed a bug in SCIBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
Meatssauce committed Sep 14, 2021
1 parent 3a4cacc commit 7e93637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SCINet.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def call(self, inputs):
F_odd, F_even = inputs[:, ::2], inputs[:, 1::2]

F_s_odd = F_odd * tf.math.exp(self.conv1ds['phi'](F_even))
F_s_even = F_even * tf.math.exp(self.conv1ds['psi'](F_s_odd))
F_s_even = F_even * tf.math.exp(self.conv1ds['psi'](F_odd))

F_prime_odd = F_s_odd + self.conv1ds['rho'](F_s_even)
F_prime_even = F_s_even - self.conv1ds['eta'](F_s_odd)
Expand Down

0 comments on commit 7e93637

Please sign in to comment.