Visual Studio
一系列 Microsoft 套件的整合開發工具,可用來建置適用於 Windows、Web 和行動裝置的應用程式。
4 個問題
我的系統是ubuntu
這是我的程式碼
import numpy as np
from mnist import load_mnist
from PIL import Image
def img_show(img):
pil_img = Image.fromarray(np.uint8(img))
pil_img.show()
(x_train,t_train),(x_test,t_test) = load_mnist(flatten = True,normalize = False)
img = x_train[0]
label = t_train[0]
print(label)
print(img.shape)
img = img.reshape(28,28)
print(img.shape)
img_show(img)
理論上會有一個視窗跳出來 但是在VScode中運行時僅有輸出
5
(784,)
(28, 28)
這些資料 但是我在terminal運行時可以正常輸出並且顯示出預期中的視窗
以論上會有這個視窗出現