zoukankan      html  css  js  c++  java
  • tf.constant

    创建一个常数张量,传入list或者数值来填充

       # Constant 1-D Tensor populated with value list.
       tensor = tf.constant([1, 2, 3, 4, 5, 6, 7]) => [1 2 3 4 5 6 7]
    
       # Constant 2-D tensor populated with scalar value -1.
       tensor = tf.constant(-1.0, shape=[2, 3]) => [[-1. -1. -1.]
    
      # 2-D tensor `a`
      a = tf.constant([1, 2, 3, 4, 5, 6], shape=[2, 3]) => [[1. 2. 3.]
                                                            [4. 5. 6.]]
      # 2-D tensor `b`
      b = tf.constant([7, 8, 9, 10, 11, 12], shape=[3, 2]) => [[7. 8.]
                                                               [9. 10.]
                                                               [11. 12.]]
      # 3-D tensor `a`
      a = tf.constant(np.arange(1, 13, dtype=np.int32),
                      shape=[2, 2, 3])                  => [[[ 1.  2.  3.]
                                                             [ 4.  5.  6.]],
                                                            [[ 7.  8.  9.]
                                                             [10. 11. 12.]]]
    
      # 3-D tensor `b`
      b = tf.constant(np.arange(13, 25, dtype=np.int32),
                      shape=[2, 3, 2])                   => [[[13. 14.]
                                                              [15. 16.]
                                                              [17. 18.]],
                                                             [[19. 20.]
                                                              [21. 22.]
                                                              [23. 24.]]]
  • 相关阅读:
    Gym
    Gym
    Gym 101147B
    巴什博弈入门
    Hihocode 1304
    hihocoder 1441
    web前端
    ajax json html 结合
    关于获取各种浏览器可见窗口大小:
    原生JS 购物车及购物页面的cookie使用
  • 原文地址:https://www.cnblogs.com/Ph-one/p/9078804.html
Copyright © 2011-2022 走看看