CS231N assignment1
阿新 • • 發佈:2018-09-20
位置 元素 rand ali num 計算 ini itl 分享圖片
# Visualize some examples from the dataset. # We show a few examples of training images from each class. classes = [‘plane‘, ‘car‘, ‘bird‘, ‘cat‘, ‘deer‘, ‘dog‘, ‘frog‘, ‘horse‘, ‘ship‘, ‘truck‘] #類別列表 num_classes = len(classes) #類別數目 samples_per_class = 7 # 每個類別采樣個數 for y, cls in enumerate(classes): #對列表的元素位置和元素進行循環,y表示元素位置(0,num_class),cls元素本身‘plane‘等 idxs = np.flatnonzero(y_train == y) #找出標簽中y類的位置 idxs = np.random.choice(idxs, samples_per_class, replace=False) #從中選出我們所需的7個樣本 for i, idx in enumerate(idxs): #對所選的樣本的位置和樣本所對應的圖片在訓練集中的位置進行循環 plt_idx = i * num_classes + y + 1 # 在子圖中所占位置的計算plt.subplot(samples_per_class, num_classes, plt_idx) # 說明要畫的子圖的編號 plt.imshow(X_train[idx].astype(‘uint8‘)) # 畫圖 plt.axis(‘off‘) if i == 0: plt.title(cls) # 寫上標題,也就是類別名 plt.show() # 顯示
數學計算出現了問題???
CS231N assignment1