美文网首页
【TensorFlow】自学笔迹 | Numpy的使用

【TensorFlow】自学笔迹 | Numpy的使用

作者: 自动化丶智能小巫师 | 来源:发表于2018-04-20 17:51 被阅读0次
    Numpy
    • Numpy官网http://www.numpy.org/
      Numpy官网首页展示
    官方学习文档:
    https://docs.scipy.org/doc/numpy/user/quickstart.html
    
    • Numpy基本用法
    import numpy as np
    vector = np.array([1,2,3])
    vector.shape
    vector.size
    vector.ndim
    type(vector)
    
    # 创建二维数组(矩阵)
    matrix = np.array([[1, 2],[3, 4]])
    matrix.shape
    matrix.size
    matrix.ndim
    type(matrix)
    
    • 对于矩阵进行转置
    one = np.arange(12)
    # 0 - 11
    one.reshape((3,4))
    two = one.reshape((3,4))
    
    two.shape
    two.size
    two.ndim
    

    相关文章

      网友评论

          本文标题:【TensorFlow】自学笔迹 | Numpy的使用

          本文链接:https://www.haomeiwen.com/subject/izbakftx.html