AttributeError: 'int' object has no attribute 'ndim'的可能原因,visdom使用

可以看到np.random.randint(1,10)的前兩個參數是low和high,沒有第三個參數size,所以返回值是一個int類型的數字。而line接受的參數是ndarray類型,所以會報錯。應該np.random.randint(1,10,1)確保生成ndarray類型。 注:tensor類型也可以。還可以混用。
相關文章
相關標籤/搜索