Flip two lines

This commit is contained in:
Crista Lopes
2019-12-27 09:54:06 -08:00
parent d5c5e00adb
commit 9f76b84cff

View File

@@ -28,8 +28,8 @@ def decode_one_hot(x):
def normalization_layer_set_weights(n_layer):
wb = []
b = np.zeros((INPUT_VOCAB_SIZE), dtype=np.float32)
w = np.zeros((INPUT_VOCAB_SIZE, INPUT_VOCAB_SIZE), dtype=np.float32)
b = np.zeros((INPUT_VOCAB_SIZE), dtype=np.float32)
# Let lower case letters go through
for c in string.ascii_lowercase:
i = char_indices[c]