Issam28 / Brain-tumor-segmentation

A deep learning based approach for brain tumor MRI segmentation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

From where I get the "y_training.npy", "x_training.npy" , "y_valid.npy", "x_valid.npy" patches. Please Guide. Its really urgent

mahaanis opened this issue · comments

#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.