程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Why for images, labels in train_ ds. Take (1): an error will be reported (Language Python)

編輯:Python
The phenomenon and background of the problem

Machine learning cat and dog identification code , What happened

plt.figure(figsize=(15, 10)) # The width of the figure is 15 High for 10

for images, labels in train_ds.take(1):
for i in range(8):

 ax = plt.subplot(5, 8, i + 1) plt.imshow(images[i]) plt.title(class_names[labels[i]]) plt.axis("off")plt.figure(figsize=(15, 10)) # The width of the figure is 15 High for 10
Operation results and error reporting contents

InvalidArgumentError: Number of channels inherent in the image must be 1, 3 or 4, was 2
[[{ {node decode_image/DecodeImage}}]] [Op:IteratorGetNext]
<Figure size 1080x720 with 0 Axe

My solution ideas and tried methods
What I want to achieve

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved