摘要:
import numpy as np #构建一个含有一个常数12的0维张量 x = np.array(12) print(x) #ndim表示张量的维度 print(x.ndim) x1 = np.array([11,12,13]) print(x1) print(x1.ndim) x2 = np. 阅读全文
posted @ 2020-01-15 10:45
吴裕雄
阅读(340)
评论(0)
推荐(0)