I have two numpy arrays which I have to join them side-by side, for example one has a shape of (100,1,300,1) and another one has a shape of (100,1,400,1), the output shape should be (100,1,700,1). I have written below codes but I need to join both np_predict and np_predict_borders as the way I told
np_predict = model.predict(np.array(images))
np_predict=np_predict.reshape(np_predict.shape[0],1,np_predict.shape[1],1)
np_predict_e=model.predict(np.array(images_e))
np_predict_e = np_predict_e.reshape(np_predict_e.shape[0], 1, np_predict_e.shape[1], 1)
I am not sure what command I have to use in numpy to join them?