Brain-tumor-segmentation
Brain-tumor-segmentation copied to clipboard
From where I get the "y_training.npy", "x_training.npy" , "y_valid.npy", "x_valid.npy" patches. Please Guide. Its really urgent
#load data from disk Y_labels=np.load("y_training.npy").astype(np.uint8) X_patches=np.load("x_training.npy").astype(np.float32) Y_labels_valid=np.load("y_valid.npy").astype(np.uint8) X_patches_valid=np.load("x_valid.npy").astype(np.float32)
Have you solved the issue? I have the same problem.