input = []
for i in range(10):
x = np.random.rand(3, 224, 224)
input.append(x)
t1 = time.time()
input = np.asarray(input)
input = torch.from_numpy(input)
input = []
for i in range(10):
x = np.random.rand(3, 224, 224)
input.append(x)
t1 = time.time()
input = np.asarray(input)
input = torch.from_numpy(input)