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 10, 2021
1 parent 1b12bcc commit c9fa811
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions BreastCancerCPUv1.0.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,13 @@ def import_images(folder,target):
return images


bengin = import_images(data_dir + "/benign",0)
benign = import_images(data_dir + "/benign",0)
malignant = import_images(data_dir + "/malignant/",1)
normal = import_images(data_dir + "/normal/",2)
benign = bengin
benign.extend(malignant)
benign.extend(normal)
plt.imshow(benign[1][0])
plt.show()



Expand Down

0 comments on commit c9fa811

Please sign in to comment.