import torchimport numpy as npprint('##########建立a-list;; b-numpy;; c- tensor##########')a = [1,2,3,4,5]b = np.array([1,2,3,4,5])c = torch.arange(1 ...
確定! 回上一頁