In [180]:
import numpy as np
seq_len = 2
batch_size = 3
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
num_batches = len(x) // seq_len
x = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20])
y = x[1: len(x)]
y = np.append(y, x[0])
x, y
Out[180]:
In [179]:
x1 = np.array(each in x)
Out[179]:
In [ ]:
In [ ]:
In [ ]:
In [ ]: