Skip to content

Commit

Permalink
Update BreastCancerCPUv1.0.py
Browse files Browse the repository at this point in the history
  • Loading branch information
M-C-AD committed Oct 9, 2021
1 parent 54489ba commit b3b17d6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions BreastCancerCPUv1.0.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ def import_images(folder,target):
images.append([img,target])
return images

bengin = import_images(data_dir + "/benign/",0)
# malignant = import_images("../input/breast-ultrasound-images-dataset/Dataset_BUSI_with_GT/malignant/",1)
# normal = import_images("../input/breast-ultrasound-images-dataset/Dataset_BUSI_with_GT/normal/",2)

bengin = import_images(data_dir + "/benign",0)
malignant = import_images(data_dir + "/malignant/",1)
normal = import_images(data_dir + "/normal/",2)



0 comments on commit b3b17d6

Please sign in to comment.